diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-29 15:23:38 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-04-29 15:23:38 +0200 |
commit | 06690371263c2a6d573ba82b4de5e07761550027 (patch) | |
tree | f22442171ca53162c2b5243790bd2b2f5f7046a1 /lisp/kmacro.el | |
parent | e4c26271f2c2fe08f8490e25c63a436ab2a804ca (diff) | |
download | emacs-06690371263c2a6d573ba82b4de5e07761550027.tar.gz emacs-06690371263c2a6d573ba82b4de5e07761550027.tar.bz2 emacs-06690371263c2a6d573ba82b4de5e07761550027.zip |
Fix call of `kmacro-display'
* lisp/kmacro.el (kmacro-view-ring-2nd): Fix call of
`kmacro-display' (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 a3683738fc6..2e743b4c383 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -478,7 +478,7 @@ without repeating the prefix." "Display the current head of the keyboard macro ring." (interactive) (unless (kmacro-ring-empty-p) - (kmacro-display (car (car kmacro-ring)) "2nd macro"))) + (kmacro-display (car (car kmacro-ring)) nil "2nd macro"))) (defun kmacro-cycle-ring-next (&optional _arg) |