diff options
| author | Chong Yidong | 2012-04-09 20:36:01 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-04-09 20:36:01 +0800 |
| commit | b4d3bc10dc84f6b01a2b6b215d0e489555aa6edd (patch) | |
| tree | efc38746407c5604b926f192b6f1339dbac410d1 /lisp/erc | |
| parent | 9e40dda4c65e2b5a3dba82c180a20bb5c4687540 (diff) | |
| download | emacs-b4d3bc10dc84f6b01a2b6b215d0e489555aa6edd.tar.gz emacs-b4d3bc10dc84f6b01a2b6b215d0e489555aa6edd.zip | |
Remove defining user variables via * in docstring.
* lisp/apropos.el (apropos-variable):
* lisp/files-x.el (read-file-local-variable):
* lisp/simple.el (set-variable):
* lisp/woman.el (woman-mini-help):
* lisp/emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
* lisp/custom.el (custom-variable-p): Return nil for non-symbol
arguments instead of signaling an error.
(user-variable-p): Obsolete alias for custom-variable-p.
* lisp/erc/erc.el (erc-cmd-SET): Call custom-variable-p instead of
user-variable-p.
* src/callint.c (Finteractive, Fcall_interactively):
* src/minibuf.c (Fread_variable): Callers changed.
* src/eval.c (Fuser_variable_p, user_variable_p_eh)
(lisp_indirect_variable): Functions deleted.
(Fdefvar): Caller changed.
* doc/lispref/commands.texi (Interactive Codes):
* doc/lispref/help.texi (Accessing Documentation):
* doc/lispref/minibuf.texi (High-Level Completion): Callers changed.
* doc/lispref/customize.texi (Variable Definitions): Remove user-variable-p.
Diffstat (limited to 'lisp/erc')
| -rw-r--r-- | lisp/erc/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/erc/erc.el | 2 |
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 @@ | |||
| 1 | 2012-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 | |||
| 1 | 2012-02-08 Glenn Morris <rgm@gnu.org> | 6 | 2012-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) |