diff options
author | Glenn Morris <rgm@gnu.org> | 2009-10-24 03:54:58 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-10-24 03:54:58 +0000 |
commit | 1dee7c238bf93b8192cbb615f408bed230fefeda (patch) | |
tree | b64ca1d352352e7c357ed68a7d86bd2f2d9970cb /lisp | |
parent | 595521d74c841cf70cff075872333fdf3728c4df (diff) | |
download | emacs-1dee7c238bf93b8192cbb615f408bed230fefeda.tar.gz emacs-1dee7c238bf93b8192cbb615f408bed230fefeda.tar.bz2 emacs-1dee7c238bf93b8192cbb615f408bed230fefeda.zip |
(pcomplete-erc-all-nicks): Autoload it, to silence compiler.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/erc/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/erc/erc-notify.el | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 73b14f6f912..20d5f49e7f5 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,3 +1,12 @@ +2009-10-24 Glenn Morris <rgm@gnu.org> + + * erc-dcc.el (pcomplete-erc-all-nicks): + * erc-notify.el (pcomplete-erc-all-nicks): + Autoload it, to silence compiler. + + * erc-dcc.el (pcomplete/erc-mode/DCC): Replace cl-function + remove-duplicates with erc-delete-dups. + 2009-09-27 Johan Bockgård <bojohan@gnu.org> * erc-button.el (erc-button-keymap): Bind `follow-link'. diff --git a/lisp/erc/erc-notify.el b/lisp/erc/erc-notify.el index 393a66fb8f6..a7288d234b9 100644 --- a/lisp/erc/erc-notify.el +++ b/lisp/erc/erc-notify.el @@ -234,6 +234,8 @@ with args, toggle notify status of people." 'notify_list ?l (mapconcat 'identity erc-notify-list " ")))) t) +(autoload 'pcomplete-erc-all-nicks "erc-pcomplete") + ;;;###autoload (defun pcomplete/erc-mode/NOTIFY () (pcomplete-here (pcomplete-erc-all-nicks))) |