diff options
| author | Kim F. Storm | 2004-09-09 20:51:18 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-09-09 20:51:18 +0000 |
| commit | 8e887df41b52fd19191addc2965a2b18a6ff0864 (patch) | |
| tree | 6d5e9f369153ea39bca8c59a1c301d31faba88d7 | |
| parent | 419a6e22e9261cb3bf834c1be5d7aee6e09c2f5e (diff) | |
| download | emacs-8e887df41b52fd19191addc2965a2b18a6ff0864.tar.gz emacs-8e887df41b52fd19191addc2965a2b18a6ff0864.zip | |
(Save Keyboard Macro): Replace `name-last-kbd-macro'
with new `kmacro-name-last-macro'.
| -rw-r--r-- | man/kmacro.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/kmacro.texi b/man/kmacro.texi index bad186f88b2..c07602bc77f 100644 --- a/man/kmacro.texi +++ b/man/kmacro.texi | |||
| @@ -62,7 +62,7 @@ When this point is reached during macro execution, ask for confirmation | |||
| 62 | (@code{kbd-macro-query}). | 62 | (@code{kbd-macro-query}). |
| 63 | @item C-x C-k n | 63 | @item C-x C-k n |
| 64 | Give a command name (for the duration of the session) to the most | 64 | Give a command name (for the duration of the session) to the most |
| 65 | recently defined keyboard macro (@code{name-last-kbd-macro}). | 65 | recently defined keyboard macro (@code{kmacro-name-last-macro}). |
| 66 | @item C-x C-k b | 66 | @item C-x C-k b |
| 67 | Bind the most recently defined keyboard macro to a key sequence (for | 67 | Bind the most recently defined keyboard macro to a key sequence (for |
| 68 | the duration of the session) (@code{kmacro-bind-to-key}). | 68 | the duration of the session) (@code{kmacro-bind-to-key}). |
| @@ -361,10 +361,10 @@ register as a counter, incrementing it on each repetition of the macro. | |||
| 361 | @section Naming and Saving Keyboard Macros | 361 | @section Naming and Saving Keyboard Macros |
| 362 | 362 | ||
| 363 | @cindex saving keyboard macros | 363 | @cindex saving keyboard macros |
| 364 | @findex name-last-kbd-macro | 364 | @findex kmacro-name-last-macro |
| 365 | @kindex C-x C-k n | 365 | @kindex C-x C-k n |
| 366 | If you wish to save a keyboard macro for later use, you can give it | 366 | If you wish to save a keyboard macro for later use, you can give it |
| 367 | a name using @kbd{C-x C-k n} (@code{name-last-kbd-macro}). | 367 | a name using @kbd{C-x C-k n} (@code{kmacro-name-last-macro}). |
| 368 | This reads a name as an argument using the minibuffer and defines that | 368 | This reads a name as an argument using the minibuffer and defines that |
| 369 | name to execute the last keyboard macro, in its current form. (If you | 369 | name to execute the last keyboard macro, in its current form. (If you |
| 370 | later add to the definition of this macro, that does not alter the | 370 | later add to the definition of this macro, that does not alter the |