aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/erc')
-rw-r--r--lisp/erc/ChangeLog5
-rw-r--r--lisp/erc/erc.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog
index af853c4e230..34aa015d7ac 100644
--- a/lisp/erc/ChangeLog
+++ b/lisp/erc/ChangeLog
@@ -1,3 +1,8 @@
12012-04-09 Chong Yidong <cyd@gnu.org>
2
3 * erc.el (erc-cmd-SET): Call custom-variable-p instead of
4 user-variable-p.
5
12012-02-08 Glenn Morris <rgm@gnu.org> 62012-02-08 Glenn Morris <rgm@gnu.org>
2 7
3 * erc-backend.el (erc-coding-system-precedence): 8 * erc-backend.el (erc-coding-system-precedence):
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index b95d42b154a..63777fb3897 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -2616,7 +2616,7 @@ VALUE is computed by evaluating the rest of LINE in Lisp."
2616 (if (consp val) 2616 (if (consp val)
2617 (concat "\n" (pp-to-string val)) 2617 (concat "\n" (pp-to-string val))
2618 (format " %S\n" val))))) 2618 (format " %S\n" val)))))
2619 (apropos-internal "^erc-" 'user-variable-p)))) 2619 (apropos-internal "^erc-" 'custom-variable-p))))
2620 (current-buffer)) t) 2620 (current-buffer)) t)
2621 (t nil))) 2621 (t nil)))
2622(defalias 'erc-cmd-VAR 'erc-cmd-SET) 2622(defalias 'erc-cmd-VAR 'erc-cmd-SET)