aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-07 19:03:50 -0800
committerLars Ingebrigtsen2014-02-07 19:03:50 -0800
commit518f26c27ba8bf59a642ec0dd3c21e8915e10eef (patch)
tree77db5b09e060152500653abafa1292c478b0614e
parentdd8e49fda275d10b7c62c18be022f7d27f67ddb6 (diff)
downloademacs-518f26c27ba8bf59a642ec0dd3c21e8915e10eef.tar.gz
emacs-518f26c27ba8bf59a642ec0dd3c21e8915e10eef.zip
* macros.el (insert-kbd-macro): Doc fix.
Fixes: debbugs:16025
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/macros.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6890915509f..7d11d09fc98 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * macros.el (insert-kbd-macro): Doc fix (bug#16025).
4
12014-02-08 Glenn Morris <rgm@gnu.org> 52014-02-08 Glenn Morris <rgm@gnu.org>
2 6
3 * help-fns.el (describe-variable): 7 * help-fns.el (describe-variable):
diff --git a/lisp/macros.el b/lisp/macros.el
index 4b79570924f..152ceba4a1e 100644
--- a/lisp/macros.el
+++ b/lisp/macros.el
@@ -51,7 +51,8 @@ Such a \"function\" cannot be called from Lisp, but it is a valid editor command
51 51
52;;;###autoload 52;;;###autoload
53(defun insert-kbd-macro (macroname &optional keys) 53(defun insert-kbd-macro (macroname &optional keys)
54 "Insert in buffer the definition of kbd macro NAME, as Lisp code. 54 "Insert in buffer the definition of kbd macro MACRONAME, as Lisp code.
55MACRONAME should be a symbol.
55Optional second arg KEYS means also record the keys it is on 56Optional second arg KEYS means also record the keys it is on
56\(this is the prefix argument, when calling interactively). 57\(this is the prefix argument, when calling interactively).
57 58