# HG changeset patch # User Romain Francoise # Date 1223750618 0 # Node ID 835147d28933d724879072c0de9ccee5a50ca12f # Parent 9c8d02adc5c496f6a62bae470b04169d3d593a00 * help.el (view-lossage): Fix docstring, lossage is now 300 keys. * kmacro.el (kmacro-edit-lossage): Ditto. * edmacro.el (edit-kbd-macro): Ditto. diff -r 9c8d02adc5c4 -r 835147d28933 lisp/ChangeLog --- a/lisp/ChangeLog Sat Oct 11 18:35:15 2008 +0000 +++ b/lisp/ChangeLog Sat Oct 11 18:43:38 2008 +0000 @@ -1,3 +1,9 @@ +2008-10-11 Romain Francoise + + * 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 * net/newst-treeview.el (newsticker--treeview-list-sort-by-column): diff -r 9c8d02adc5c4 -r 835147d28933 lisp/edmacro.el --- a/lisp/edmacro.el Sat Oct 11 18:35:15 2008 +0000 +++ b/lisp/edmacro.el Sat Oct 11 18:43:38 2008 +0000 @@ -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 @@ "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") diff -r 9c8d02adc5c4 -r 835147d28933 lisp/help.el --- a/lisp/help.el Sat Oct 11 18:35:15 2008 +0000 +++ b/lisp/help.el Sat Oct 11 18:43:38 2008 +0000 @@ -453,7 +453,7 @@ (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) diff -r 9c8d02adc5c4 -r 835147d28933 lisp/kmacro.el --- a/lisp/kmacro.el Sat Oct 11 18:35:15 2008 +0000 +++ b/lisp/kmacro.el Sat Oct 11 18:43:38 2008 +0000 @@ -895,7 +895,7 @@ (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"))