diff options
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/kmacro.el | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b32387700de..1e10c6701b8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2002-09-11 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * kmacro.el (kmacro-call-macro): Rephrase repeat prompt. | ||
| 4 | (kmacro-step-edit-map): Bind "A" to `append-end'. | ||
| 5 | (kmacro-step-edit-prompt): Fix prompt. | ||
| 6 | (kmacro-step-edit-query): Handle `append-end' response. | ||
| 7 | (kmacro-step-edit-pre-command): Activate `append-end' at end of | ||
| 8 | macro when required. | ||
| 9 | |||
| 1 | 2002-09-10 Dave Love <fx@gnu.org> | 10 | 2002-09-10 Dave Love <fx@gnu.org> |
| 2 | 11 | ||
| 3 | * international/utf-8.el (ucs-mule-to-mule-unicode): Define | 12 | * international/utf-8.el (ucs-mule-to-mule-unicode): Define |
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index 5b2edb8c766..01b2618c207 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el | |||
| @@ -818,7 +818,8 @@ following additional answers: `insert', `insert-1', `replace', `replace-1', | |||
| 818 | (if kmacro-step-edit-help "\ | 818 | (if kmacro-step-edit-help "\ |
| 819 | Step: y/SPC: execute next, d/n/DEL: skip next, f: skip but keep | 819 | Step: y/SPC: execute next, d/n/DEL: skip next, f: skip but keep |
| 820 | TAB: execute while same, ?: toggle help | 820 | TAB: execute while same, ?: toggle help |
| 821 | Edit: i: insert, a: append, r: replace, I/A/R: one sequence | 821 | Edit: i: insert, r: replace, a: append, A: append at end, |
| 822 | I/R: insert/replace with one sequence, | ||
| 822 | End: !/c: execute rest, C-k: skip rest and save, q/C-g: quit | 823 | End: !/c: execute rest, C-k: skip rest and save, q/C-g: quit |
| 823 | ---------------------------------------------------------------- | 824 | ---------------------------------------------------------------- |
| 824 | " "") | 825 | " "") |