Changeset 4210 for trunk/lisp/simple.el
- Timestamp:
- 06/02/07 09:29:41 (1 year ago)
- Files:
-
- trunk/lisp/simple.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/simple.el
r4204 r4210 3205 3205 will pop the mark three times. 3206 3206 3207 nil means \\[set-mark-command]'s behavior does not change3207 A value of nil means \\[set-mark-command]'s behavior does not change 3208 3208 after C-u \\[set-mark-command]." 3209 3209 :type 'boolean … … 3272 3272 also push LOCATION on the global mark ring. 3273 3273 Display `Mark set' unless the optional second arg NOMSG is non-nil. 3274 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil.3275 3274 3276 3275 Novice Emacs Lisp programmers often try to use the mark for the wrong 3277 3276 purposes. See the documentation of `set-mark' for more information. 3278 3277 3279 In Transient Mark mode, this does not activate the mark."3278 In Transient Mark mode, activate mark if optional third arg ACTIVATE non-nil." 3280 3279 (unless (null (mark t)) 3281 3280 (setq mark-ring (cons (copy-marker (mark-marker)) mark-ring))
