diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-05-18 22:56:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-05-18 22:56:08 +0000 |
commit | de9606f01da32e4070bf7908ef4cf9ba835e4b6f (patch) | |
tree | fae1e87b2f6f97f5185edc2a6c01f353270ae0ec /lisp/simple.el | |
parent | 64953c0a99a725ba3fb74b34b25a751cbb3cce4a (diff) | |
download | emacs-de9606f01da32e4070bf7908ef4cf9ba835e4b6f.tar.gz |
(push-mark): Doc fix.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 7faa0547687..daedae6100c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3271,12 +3271,11 @@ purposes. See the documentation of `set-mark' for more information." If the last global mark pushed was not in the current buffer, also push LOCATION on the global mark ring. Display `Mark set' unless the optional second arg NOMSG is non-nil. -In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil. Novice Emacs Lisp programmers often try to use the mark for the wrong purposes. See the documentation of `set-mark' for more information. -In Transient Mark mode, this does not activate the mark." +In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil." (unless (null (mark t)) (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring)) (when (> (length mark-ring) mark-ring-max) |