diff options
author | Kevin Ryde <user42@zip.com.au> | 2011-05-28 15:36:02 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-05-28 15:36:02 -0400 |
commit | 2b1e1a2263e82bde6e429a906cb786ea144f9db5 (patch) | |
tree | 9e726b3718b37371ddea157edd5ea156f6b41fc9 | |
parent | 5d344e883f9e599a1580009a55bcf09230e1da02 (diff) | |
download | emacs-2b1e1a2263e82bde6e429a906cb786ea144f9db5.tar.gz emacs-2b1e1a2263e82bde6e429a906cb786ea144f9db5.tar.bz2 emacs-2b1e1a2263e82bde6e429a906cb786ea144f9db5.zip |
* lisp/subr.el (def-edebug-spec): Doc fix (Bug#8430).
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a27a784f0ec..9da3ecdd777 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-05-28 Kevin Ryde <user42@zip.com.au> + + * subr.el (def-edebug-spec): Doc fix (Bug#8430). + 2011-05-28 Chong Yidong <cyd@stupidchicken.com> * files.el (auto-mode-alist): Move config rule after the diff --git a/lisp/subr.el b/lisp/subr.el index 7f0066548a4..4fe9987b95b 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -92,7 +92,7 @@ Both SYMBOL and SPEC are unevaluated. The SPEC can be: 0 (instrument no arguments); t (instrument all arguments); a symbol (naming a function with an Edebug specification); or a list. The elements of the list describe the argument types; see -\(info \"(elisp)Specification List\") for details." +Info node `(elisp)Specification List' for details." `(put (quote ,symbol) 'edebug-form-spec (quote ,spec))) (defmacro lambda (&rest cdr) |