aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2008-10-11 18:43:38 +0000
committerRomain Francoise2008-10-11 18:43:38 +0000
commit6b8d1c7243b68623aac3eba9414898b8aaf590f8 (patch)
tree334e868ceb54dd650cd277fcc4eb5c887a9dccc5
parent6d02b70b0a2ea4e00ee8805dfa039a8e1d34bd1f (diff)
downloademacs-6b8d1c7243b68623aac3eba9414898b8aaf590f8.tar.gz
emacs-6b8d1c7243b68623aac3eba9414898b8aaf590f8.zip
* help.el (view-lossage): Fix docstring, lossage is now 300 keys.
* kmacro.el (kmacro-edit-lossage): Ditto. * edmacro.el (edit-kbd-macro): Ditto.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/edmacro.el4
-rw-r--r--lisp/help.el2
-rw-r--r--lisp/kmacro.el2
4 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ac25564014b..c39b64e8a87 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12008-10-11 Romain Francoise <romain@orebokech.com>
2
3 * help.el (view-lossage): Fix docstring, lossage is now 300 keys.
4 * kmacro.el (kmacro-edit-lossage): Ditto.
5 * edmacro.el (edit-kbd-macro): Ditto.
6
12008-10-11 Ulf Jasper <ulf@web.de> 72008-10-11 Ulf Jasper <ulf@web.de>
2 8
3 * net/newst-treeview.el (newsticker--treeview-list-sort-by-column): 9 * net/newst-treeview.el (newsticker--treeview-list-sort-by-column):
diff --git a/lisp/edmacro.el b/lisp/edmacro.el
index 29f99676062..872d853c4b1 100644
--- a/lisp/edmacro.el
+++ b/lisp/edmacro.el
@@ -37,7 +37,7 @@
37;; * `M-x' followed by a command name, to edit a named command 37;; * `M-x' followed by a command name, to edit a named command
38;; whose definition is a keyboard macro. 38;; whose definition is a keyboard macro.
39;; 39;;
40;; * `C-h l' (view-lossage), to edit the 100 most recent keystrokes 40;; * `C-h l' (view-lossage), to edit the 300 most recent keystrokes
41;; and install them as the "current" macro. 41;; and install them as the "current" macro.
42;; 42;;
43;; * any key sequence whose definition is a keyboard macro. 43;; * any key sequence whose definition is a keyboard macro.
@@ -96,7 +96,7 @@ Default nil means to write characters above \\177 in octal notation.")
96 "Edit a keyboard macro. 96 "Edit a keyboard macro.
97At the prompt, type any key sequence which is bound to a keyboard macro. 97At the prompt, type any key sequence which is bound to a keyboard macro.
98Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit 98Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
99the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by 99the last 300 keystrokes as a keyboard macro, or `M-x' to edit a macro by
100its command name. 100its command name.
101With a prefix argument, format the macro in a more concise way." 101With a prefix argument, format the macro in a more concise way."
102 (interactive "kKeyboard macro to edit (C-x e, M-x, C-h l, or keys): \nP") 102 (interactive "kKeyboard macro to edit (C-x e, M-x, C-h l, or keys): \nP")
diff --git a/lisp/help.el b/lisp/help.el
index 9ab2d77854b..c43562f1ca4 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -453,7 +453,7 @@ is specified by the variable `message-log-max'."
453 (view-help-file "MORE.STUFF")) 453 (view-help-file "MORE.STUFF"))
454 454
455(defun view-lossage () 455(defun view-lossage ()
456 "Display last 100 input keystrokes. 456 "Display last 300 input keystrokes.
457 457
458To record all your input on a file, use `open-dribble-file'." 458To record all your input on a file, use `open-dribble-file'."
459 (interactive) 459 (interactive)
diff --git a/lisp/kmacro.el b/lisp/kmacro.el
index 4cb3bb77d40..a738bb5e00a 100644
--- a/lisp/kmacro.el
+++ b/lisp/kmacro.el
@@ -895,7 +895,7 @@ without repeating the prefix."
895 895
896 896
897(defun kmacro-edit-lossage () 897(defun kmacro-edit-lossage ()
898 "Edit most recent 100 keystrokes as a keyboard macro." 898 "Edit most recent 300 keystrokes as a keyboard macro."
899 (interactive) 899 (interactive)
900 (kmacro-push-ring) 900 (kmacro-push-ring)
901 (edit-kbd-macro "\C-hl")) 901 (edit-kbd-macro "\C-hl"))