]> git.eshelyaron.com Git - emacs.git/commitdiff
* help.el (view-lossage): Fix docstring, lossage is now 300 keys.
authorRomain Francoise <romain@orebokech.com>
Sat, 11 Oct 2008 18:43:38 +0000 (18:43 +0000)
committerRomain Francoise <romain@orebokech.com>
Sat, 11 Oct 2008 18:43:38 +0000 (18:43 +0000)
* kmacro.el (kmacro-edit-lossage): Ditto.
* edmacro.el (edit-kbd-macro): Ditto.

lisp/ChangeLog
lisp/edmacro.el
lisp/help.el
lisp/kmacro.el

index ac25564014b25334840037296c256d52a458b672..c39b64e8a875e737586a547d0ae11ddbefe1c6a2 100644 (file)
@@ -1,3 +1,9 @@
+2008-10-11  Romain Francoise  <romain@orebokech.com>
+
+       * help.el (view-lossage): Fix docstring, lossage is now 300 keys.
+       * kmacro.el (kmacro-edit-lossage): Ditto.
+       * edmacro.el (edit-kbd-macro): Ditto.
+
 2008-10-11  Ulf Jasper  <ulf@web.de>
 
        * net/newst-treeview.el (newsticker--treeview-list-sort-by-column):
index 29f996760628f0799a41c1b30429aa8b521cfe26..872d853c4b1b1d5c1c6e20996471d5ad054239ff 100644 (file)
@@ -37,7 +37,7 @@
 ;;  * `M-x' followed by a command name, to edit a named command
 ;;    whose definition is a keyboard macro.
 ;;
-;;  * `C-h l' (view-lossage), to edit the 100 most recent keystrokes
+;;  * `C-h l' (view-lossage), to edit the 300 most recent keystrokes
 ;;    and install them as the "current" macro.
 ;;
 ;;  * any key sequence whose definition is a keyboard macro.
@@ -96,7 +96,7 @@ Default nil means to write characters above \\177 in octal notation.")
   "Edit a keyboard macro.
 At the prompt, type any key sequence which is bound to a keyboard macro.
 Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
-the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
+the last 300 keystrokes as a keyboard macro, or `M-x' to edit a macro by
 its command name.
 With a prefix argument, format the macro in a more concise way."
   (interactive "kKeyboard macro to edit (C-x e, M-x, C-h l, or keys): \nP")
index 9ab2d77854be9a0367a2308f266b468f715916cc..c43562f1ca40bfc5547be906de742c5377076ebe 100644 (file)
@@ -453,7 +453,7 @@ is specified by the variable `message-log-max'."
   (view-help-file "MORE.STUFF"))
 
 (defun view-lossage ()
-  "Display last 100 input keystrokes.
+  "Display last 300 input keystrokes.
 
 To record all your input on a file, use `open-dribble-file'."
   (interactive)
index 4cb3bb77d40cdf6b26aef9b4ed07a8d88b34cfc1..a738bb5e00a6b4760acd7e2231107e6a938bf952 100644 (file)
@@ -895,7 +895,7 @@ without repeating the prefix."
 
 
 (defun kmacro-edit-lossage ()
-  "Edit most recent 100 keystrokes as a keyboard macro."
+  "Edit most recent 300 keystrokes as a keyboard macro."
   (interactive)
   (kmacro-push-ring)
   (edit-kbd-macro "\C-hl"))