diff options
| author | Earl Hyatt | 2024-10-13 13:44:18 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2024-10-14 14:37:39 +0300 |
| commit | b87fda63dd4a29c3c28e235904405f2d6709239e (patch) | |
| tree | b334418facdee52fd35414fedb7b54165a03ecd3 | |
| parent | ae75ea62324598654b32ed28bf644ec2bc4c04b2 (diff) | |
| download | emacs-b87fda63dd4a29c3c28e235904405f2d6709239e.tar.gz emacs-b87fda63dd4a29c3c28e235904405f2d6709239e.zip | |
Fix formatting of long keyboard macros by 'list-keyboard-macros'.
* lisp/kmacro.el (kmacro-menu--refresh): Include the second
argument of 'format-kbd-macro' so that the formatted keyboard
macro is on a single line. (Bug#73797)
| -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 50ff875de52..6d43a3f680c 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el | |||
| @@ -1576,7 +1576,7 @@ To customize possible responses, change the \"bindings\" in | |||
| 1576 | ,(format "%d" cnt) | 1576 | ,(format "%d" cnt) |
| 1577 | ,fmt | 1577 | ,fmt |
| 1578 | ,(format fmt cnt) | 1578 | ,(format fmt cnt) |
| 1579 | ,(format-kbd-macro (kmacro--keys km))]))) | 1579 | ,(format-kbd-macro (kmacro--keys km) 1)]))) |
| 1580 | (kmacro-menu--kmacros)) | 1580 | (kmacro-menu--kmacros)) |
| 1581 | kmacro-menu--deletion-flags nil | 1581 | kmacro-menu--deletion-flags nil |
| 1582 | kmacro-menu--marks nil) | 1582 | kmacro-menu--marks nil) |