diff options
| author | Richard M. Stallman | 2007-04-23 21:16:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-04-23 21:16:31 +0000 |
| commit | ebd2fc0d037cf04b7ac820cf353182173649cdf0 (patch) | |
| tree | 74e095ceb95dc4bc2903f3bee0734ca1a36f670f | |
| parent | 32b147b57d6db61b3b0d8518610db9e7e1614906 (diff) | |
| download | emacs-ebd2fc0d037cf04b7ac820cf353182173649cdf0.tar.gz emacs-ebd2fc0d037cf04b7ac820cf353182173649cdf0.zip | |
(set-mark-command-repeat-pop): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 11 |
2 files changed, 12 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ffd4b3c18f2..40b96dc1820 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-04-23 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * simple.el (set-mark-command-repeat-pop): Doc fix. | ||
| 4 | |||
| 1 | 2007-04-23 Chong Yidong <cyd@stupidchicken.com> | 5 | 2007-04-23 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down): New | 7 | * info.el (Info-mouse-scroll-up, Info-mouse-scroll-down): New |
diff --git a/lisp/simple.el b/lisp/simple.el index 49cae2ceb46..c41804fa378 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3198,9 +3198,14 @@ Display `Mark set' unless the optional second arg NOMSG is non-nil." | |||
| 3198 | (message "Mark activated"))))) | 3198 | (message "Mark activated"))))) |
| 3199 | 3199 | ||
| 3200 | (defcustom set-mark-command-repeat-pop nil | 3200 | (defcustom set-mark-command-repeat-pop nil |
| 3201 | "*Non-nil means that repeating \\[set-mark-command] after popping will pop. | 3201 | "*Non-nil means repeating \\[set-mark-command] after popping mark pops it again. |
| 3202 | This means that if you type C-u \\[set-mark-command] \\[set-mark-command] | 3202 | That means that C-u \\[set-mark-command] \\[set-mark-command] |
| 3203 | will pop twice." | 3203 | will pop the mark twice, and |
| 3204 | C-u \\[set-mark-command] \\[set-mark-command] \\[set-mark-command] | ||
| 3205 | will pop the mark three times. | ||
| 3206 | |||
| 3207 | nil means \\[set-mark-command]'s behavior does not change | ||
| 3208 | after C-u \\[set-mark-command]." | ||
| 3204 | :type 'boolean | 3209 | :type 'boolean |
| 3205 | :group 'editing) | 3210 | :group 'editing) |
| 3206 | 3211 | ||