comparison lisp/emulation/cua-base.el @ 79409:5228ca1272a5

(cua-highlight-region-shift-only, cua-paste-pop): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 15 Nov 2007 18:29:30 +0000
parents bd723bb0ef23
children d6d821e3ae21
comparison
equal deleted inserted replaced
79408:a29ca195b71e 79409:5228ca1272a5
284 284
285 (defcustom cua-highlight-region-shift-only nil 285 (defcustom cua-highlight-region-shift-only nil
286 "*If non-nil, only highlight region if marked with S-<move>. 286 "*If non-nil, only highlight region if marked with S-<move>.
287 When this is non-nil, CUA toggles `transient-mark-mode' on when the region 287 When this is non-nil, CUA toggles `transient-mark-mode' on when the region
288 is marked using shifted movement keys, and off when the mark is cleared. 288 is marked using shifted movement keys, and off when the mark is cleared.
289 But when the mark was set using \\[cua-set-mark], transient-mark-mode 289 But when the mark was set using \\[cua-set-mark], Transient Mark mode
290 is not turned on." 290 is not turned on."
291 :type 'boolean 291 :type 'boolean
292 :group 'cua) 292 :group 'cua)
293 293
294 (defcustom cua-prefix-override-inhibit-delay 294 (defcustom cua-prefix-override-inhibit-delay
949 949
950 (defvar cua-paste-pop-count nil) 950 (defvar cua-paste-pop-count nil)
951 951
952 (defun cua-paste-pop (arg) 952 (defun cua-paste-pop (arg)
953 "Replace a just-pasted text or rectangle with a different text. 953 "Replace a just-pasted text or rectangle with a different text.
954 See `yank-pop' for details about the default behaviour. For an alternative 954 See `yank-pop' for details about the default behavior. For an alternative
955 behaviour, see `cua-paste-pop-rotate-temporarily'." 955 behavior, see `cua-paste-pop-rotate-temporarily'."
956 (interactive "P") 956 (interactive "P")
957 (cond 957 (cond
958 ((eq last-command 'cua--paste-rectangle) 958 ((eq last-command 'cua--paste-rectangle)
959 (undo) 959 (undo)
960 (yank arg)) 960 (yank arg))