aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/erc/ChangeLog9
-rw-r--r--lisp/erc/erc-notify.el2
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 @@
12009-10-24 Glenn Morris <rgm@gnu.org>
2
3 * erc-dcc.el (pcomplete-erc-all-nicks):
4 * erc-notify.el (pcomplete-erc-all-nicks):
5 Autoload it, to silence compiler.
6
7 * erc-dcc.el (pcomplete/erc-mode/DCC): Replace cl-function
8 remove-duplicates with erc-delete-dups.
9
12009-09-27 Johan Bockgård <bojohan@gnu.org> 102009-09-27 Johan Bockgård <bojohan@gnu.org>
2 11
3 * erc-button.el (erc-button-keymap): Bind `follow-link'. 12 * 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."
234 'notify_list ?l (mapconcat 'identity erc-notify-list " ")))) 234 'notify_list ?l (mapconcat 'identity erc-notify-list " "))))
235 t) 235 t)
236 236
237(autoload 'pcomplete-erc-all-nicks "erc-pcomplete")
238
237;;;###autoload 239;;;###autoload
238(defun pcomplete/erc-mode/NOTIFY () 240(defun pcomplete/erc-mode/NOTIFY ()
239 (pcomplete-here (pcomplete-erc-all-nicks))) 241 (pcomplete-here (pcomplete-erc-all-nicks)))