From: Lars Ingebrigtsen Date: Sat, 8 Feb 2014 03:03:50 +0000 (-0800) Subject: * macros.el (insert-kbd-macro): Doc fix. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~120 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=518f26c27ba8bf59a642ec0dd3c21e8915e10eef;p=emacs.git * macros.el (insert-kbd-macro): Doc fix. Fixes: debbugs:16025 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6890915509f..7d11d09fc98 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2014-02-08 Lars Ingebrigtsen + + * macros.el (insert-kbd-macro): Doc fix (bug#16025). + 2014-02-08 Glenn Morris * 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 ;;;###autoload (defun insert-kbd-macro (macroname &optional keys) - "Insert in buffer the definition of kbd macro NAME, as Lisp code. + "Insert in buffer the definition of kbd macro MACRONAME, as Lisp code. +MACRONAME should be a symbol. Optional second arg KEYS means also record the keys it is on \(this is the prefix argument, when calling interactively).