X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=blobdiff_plain;f=lisp%2Friece.el;h=40353b97171f56660114adf93a00368b9b426d3b;hp=1dc512a86eeb3445d81fe1dfedcab5085d191361;hb=9f0f8e8f7c1fefd0ae6712872f9dcb78ae3ea11c;hpb=decb18b4cddd1d9fc0a68c4fc4cd72f98a4fd838;ds=sidebyside diff --git a/lisp/riece.el b/lisp/riece.el index 1dc512a..40353b9 100644 --- a/lisp/riece.el +++ b/lisp/riece.el @@ -147,7 +147,6 @@ If optional argument SAFE is nil, overwrite previous definitions." "j" riece-command-join "\C-k" riece-command-kick "l" riece-command-list - "m" riece-dialogue-enter-message "M" riece-command-change-mode "n" riece-command-change-nickname "\C-n" riece-command-names @@ -273,8 +272,7 @@ If optional argument CONFIRM is non-nil, ask which IRC server to connect." riece-channel-list-indicator "No channel" riece-away-indicator "-" riece-operator-indicator "-" - riece-freeze-indicator "-" - riece-channel-history nil) + riece-freeze-indicator "-") (delete-other-windows) (run-hooks 'riece-exit-hook)) @@ -369,7 +367,6 @@ Instead, these commands are available: All normal editing commands are turned off." (kill-all-local-variables) (buffer-disable-undo) - (make-local-variable 'riece-redisplay-buffer) (setq major-mode 'riece-channel-list-mode mode-name "Channels" mode-line-buffer-identification @@ -386,7 +383,6 @@ Instead, these commands are available: \\{riece-user-list-mode-map}" (kill-all-local-variables) (buffer-disable-undo) - (make-local-variable 'riece-redisplay-buffer) (setq major-mode 'riece-user-list-mode mode-name "User list" mode-line-buffer-identification @@ -470,9 +466,12 @@ Instead, these commands are available: (setq queue (cdr queue))) (if dependencies (error "Circular add-on dependency found")) + (setq addons (nreverse addons)) (while addons (require (car addons)) ;implicit dependency (funcall (intern (concat (symbol-name (car addons)) "-insinuate"))) + (if riece-debug + (message "Add-on %S is loaded" (car addons))) (setq addons (cdr addons))))) (provide 'riece)