comparison lisp/simple.el @ 35635:11e5d55ea163

Fix last change.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 27 Jan 2001 11:53:09 +0000
parents bc0a3dbd22f6
children 26d2f0a7687d
comparison
equal deleted inserted replaced
35634:3461ceed2cb9 35635:11e5d55ea163
2339 Many commands change their behavior when Transient Mark mode is in effect 2339 Many commands change their behavior when Transient Mark mode is in effect
2340 and the mark is active, by acting on the region instead of their usual 2340 and the mark is active, by acting on the region instead of their usual
2341 default part of the buffer's text. Examples of such command include 2341 default part of the buffer's text. Examples of such command include
2342 \\[comment-dwim], \\[flush-lines], \\[ispell], \\[keep-lines], 2342 \\[comment-dwim], \\[flush-lines], \\[ispell], \\[keep-lines],
2343 \\[query-replace], \\[query-replace-regexp], and \\[undo]. Invoke 2343 \\[query-replace], \\[query-replace-regexp], and \\[undo]. Invoke
2344 \\[apropos-documentation] and type \"transient\" at the prompt, to see 2344 \\[apropos-documentation] and type \"transient\" or \"mark.*active\" at
2345 the documentation of commands which are sensitive to the Transient Mark mode." 2345 the prompt, to see the documentation of commands which are sensitive to
2346 the Transient Mark mode."
2346 (interactive "P") 2347 (interactive "P")
2347 (setq transient-mark-mode 2348 (setq transient-mark-mode
2348 (if (null arg) 2349 (if (null arg)
2349 (not transient-mark-mode) 2350 (not transient-mark-mode)
2350 (> (prefix-numeric-value arg) 0))) 2351 (> (prefix-numeric-value arg) 0)))