diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-30 08:10:15 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-30 08:10:15 +0200 |
commit | db1de74e734086063fabb14b6e07789f63e60ad0 (patch) | |
tree | 649a60cd09b8406d64e8243f821a01281954f70f /lisp/kmacro.el | |
parent | 253e52478c355dc29052c0d21013b8d06b473880 (diff) | |
download | emacs-db1de74e734086063fabb14b6e07789f63e60ad0.tar.gz emacs-db1de74e734086063fabb14b6e07789f63e60ad0.tar.bz2 emacs-db1de74e734086063fabb14b6e07789f63e60ad0.zip |
Fix kmacro-view-ring-2nd doc string
* lisp/kmacro.el (kmacro-view-ring-2nd): Fix doc string (bug#15020).
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index afc486f4edc..8821e35c2d1 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -482,7 +482,7 @@ without repeating the prefix." (defun kmacro-view-ring-2nd () - "Display the current head of the keyboard macro ring." + "Display the second macro in the keyboard macro ring." (interactive) (unless (kmacro-ring-empty-p) (kmacro-display (car (car kmacro-ring)) nil "2nd macro"))) |