diff options
| author | Chong Yidong | 2012-10-23 10:23:39 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-10-23 10:23:39 +0800 |
| commit | 1fb3aa3fead098e7df1428c7a70e3a32f1da23e4 (patch) | |
| tree | 9e1c867779f3438bdf12a5a7764c8359cac84d27 | |
| parent | 608d9d7caf59345fafdb4d412a1706e7028e1c3c (diff) | |
| download | emacs-1fb3aa3fead098e7df1428c7a70e3a32f1da23e4.tar.gz emacs-1fb3aa3fead098e7df1428c7a70e3a32f1da23e4.zip | |
* doc/lispref/keymaps.texi (Key Sequences): Avoid referring to Edit Macro mode.
* doc/emacs/kmacro.texi (Edit Keyboard Macro): Fix typo.
Fixes: debbugs:12529
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/kmacro.texi | 9 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/keymaps.texi | 10 |
4 files changed, 19 insertions, 9 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 66bb2de921b..f1a3cdb6235 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-10-23 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * kmacro.texi (Edit Keyboard Macro): Fix typo. | ||
| 4 | |||
| 1 | 2012-10-18 Dani Moncayo <dmoncayo@gmail.com> | 5 | 2012-10-18 Dani Moncayo <dmoncayo@gmail.com> |
| 2 | 6 | ||
| 3 | * mini.texi (Completion Options): Fix off-by-one error. (Bug#12644) | 7 | * mini.texi (Completion Options): Fix off-by-one error. (Bug#12644) |
diff --git a/doc/emacs/kmacro.texi b/doc/emacs/kmacro.texi index 7a3f3151e5c..3b83d24e405 100644 --- a/doc/emacs/kmacro.texi +++ b/doc/emacs/kmacro.texi | |||
| @@ -482,10 +482,11 @@ Edit the last 300 keystrokes as a keyboard macro | |||
| 482 | @kindex C-x C-k C-e | 482 | @kindex C-x C-k C-e |
| 483 | @kindex C-x C-k RET | 483 | @kindex C-x C-k RET |
| 484 | You can edit the last keyboard macro by typing @kbd{C-x C-k C-e} or | 484 | You can edit the last keyboard macro by typing @kbd{C-x C-k C-e} or |
| 485 | @kbd{C-x C-k RET} (@code{kmacro-edit-macro}). This formats the macro | 485 | @kbd{C-x C-k @key{RET}} (@code{kmacro-edit-macro}). This formats the |
| 486 | definition in a buffer and enters a specialized major mode for editing | 486 | macro definition in a buffer and enters a specialized major mode for |
| 487 | it. Type @kbd{C-h m} once in that buffer to display details of how to | 487 | editing it. Type @kbd{C-h m} once in that buffer to display details |
| 488 | edit the macro. When you are finished editing, type @kbd{C-c C-c}. | 488 | of how to edit the macro. When you are finished editing, type |
| 489 | @kbd{C-c C-c}. | ||
| 489 | 490 | ||
| 490 | @findex edit-kbd-macro | 491 | @findex edit-kbd-macro |
| 491 | @kindex C-x C-k e | 492 | @kindex C-x C-k e |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 76d0452b9e7..c18c29d6d63 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-10-23 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * keymaps.texi (Key Sequences): Avoid referring to Edit Macro mode | ||
| 4 | (Bug#12529). | ||
| 5 | |||
| 1 | 2012-10-22 Glenn Morris <rgm@gnu.org> | 6 | 2012-10-22 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * os.texi (Recording Input): Tiny fix. | 8 | * os.texi (Recording Input): Tiny fix. |
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi index 40dfcaea043..9fa6193a804 100644 --- a/doc/lispref/keymaps.texi +++ b/doc/lispref/keymaps.texi | |||
| @@ -78,11 +78,11 @@ representations, @ref{Init Rebinding,,, emacs, The GNU Emacs Manual}. | |||
| 78 | @defmac kbd keyseq-text | 78 | @defmac kbd keyseq-text |
| 79 | This macro converts the text @var{keyseq-text} (a string constant) | 79 | This macro converts the text @var{keyseq-text} (a string constant) |
| 80 | into a key sequence (a string or vector constant). The contents of | 80 | into a key sequence (a string or vector constant). The contents of |
| 81 | @var{keyseq-text} should describe the key sequence using almost the same | 81 | @var{keyseq-text} should use the same syntax as in the buffer invoked |
| 82 | syntax used in this manual. More precisely, it uses the same syntax | 82 | by the @kbd{C-x C-k @key{RET}} (@code{kmacro-edit-macro}) command; in |
| 83 | that Edit Macro mode uses for editing keyboard macros (@pxref{Edit | 83 | particular, you must surround function key names with |
| 84 | Keyboard Macro,,, emacs, The GNU Emacs Manual}); you must surround | 84 | @samp{<@dots{}>}. @xref{Edit Keyboard Macro,,, emacs, The GNU Emacs |
| 85 | function key names with @samp{<@dots{}>}. | 85 | Manual}. |
| 86 | 86 | ||
| 87 | @example | 87 | @example |
| 88 | (kbd "C-x") @result{} "\C-x" | 88 | (kbd "C-x") @result{} "\C-x" |