diff options
| author | Lars Ingebrigtsen | 2014-02-08 04:34:52 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-08 04:34:52 -0800 |
| commit | dce8463bb99c3a6c037b55ec99d92a68e56cae31 (patch) | |
| tree | 32ba0bef41650763fd08a580b600f2f503927890 | |
| parent | 8aa76c931f6fe9a1f337e38b0b25dfbdcc64b821 (diff) | |
| download | emacs-dce8463bb99c3a6c037b55ec99d92a68e56cae31.tar.gz emacs-dce8463bb99c3a6c037b55ec99d92a68e56cae31.zip | |
* kmacro.el (kmacro-exec-ring-item): Doc fix.
Fixes: debbugs:14198
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/kmacro.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dce1ada7fd3..2b91474c85f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> | 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198). | ||
| 4 | |||
| 3 | * find-dired.el (find-name-dired): Doc fix (bug#14290). | 5 | * find-dired.el (find-name-dired): Doc fix (bug#14290). |
| 4 | (find-grep-dired): Doc fix (bug#14288). | 6 | (find-grep-dired): Doc fix (bug#14288). |
| 5 | 7 | ||
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index c09b15362cb..6f52c7cfb4a 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el | |||
| @@ -445,7 +445,8 @@ Optional arg EMPTY is message to print if no macros are defined." | |||
| 445 | 445 | ||
| 446 | ;;;###autoload | 446 | ;;;###autoload |
| 447 | (defun kmacro-exec-ring-item (item arg) | 447 | (defun kmacro-exec-ring-item (item arg) |
| 448 | "Execute item ITEM from the macro ring." | 448 | "Execute item ITEM from the macro ring. |
| 449 | ARG is the number of times to excute the item." | ||
| 449 | ;; Use counter and format specific to the macro on the ring! | 450 | ;; Use counter and format specific to the macro on the ring! |
| 450 | (let ((kmacro-counter (nth 1 item)) | 451 | (let ((kmacro-counter (nth 1 item)) |
| 451 | (kmacro-counter-format-start (nth 2 item))) | 452 | (kmacro-counter-format-start (nth 2 item))) |