calls. In addition to byte compiler optimizations, this property is
also used for determining function safety (@pxref{Function Safety}).
+@item undo-inhibit-region
+If non-@code{nil}, the named function prevents the @code{undo} operation
+from being restricted to the active region, if @code{undo} is invoked
+immediately after the function. @xref{Undo}.
+
@item variable-documentation
If non-@code{nil}, this specifies the named variable's documentation
string. This is set automatically by @code{defvar} and related
This function does not bind @code{undo-in-progress}.
@end defun
+Some commands leave the region active after execution in such a way that
+it interferes with selective undo of that command. To make @code{undo}
+ignore the active region when invoked immediately after such a command,
+set the property @code{undo-inhibit-region} of the command's function
+symbol to a non-nil value. @xref{Standard Properties}.
+
@node Maintaining Undo
@section Maintaining Undo Lists
Setting this on the first character of a help string disables
conversions via 'substitute-command-keys'.
++++
+** 'undo' can be made to ignore the active region for a command
+by setting 'undo-inhibit-region' symbol property of that command to
+non-nil. This is used by 'mouse-drag-region' to make the effect
+easier to undo immediately afterwards.
+
\f
* Changes in Emacs 27.1 on Non-Free Operating Systems
(run-hooks 'mouse-leave-buffer-hook)
(mouse-drag-track start-event)))
+;; Inhibit the region-confinement when undoing mouse-drag-region
+;; immediately after the command. Otherwise, the selection left
+;; active around the dragged text would prevent an undo of the whole
+;; operation.
+(put 'mouse-drag-region 'undo-inhibit-region t)
+
(defun mouse-posn-property (pos property)
"Look for a property at click position.
POS may be either a buffer position or a click position like
(base-buffer (or (buffer-base-buffer) (current-buffer)))
(recent-save (with-current-buffer base-buffer
(recent-auto-save-p)))
+ ;; Allow certain commands to inhibit an immediately following
+ ;; undo-in-region.
+ (inhibit-region (and (symbolp last-command)
+ (get last-command 'undo-inhibit-region)))
message)
;; If we get an error in undo-start,
;; the next command should not be a "consecutive undo".
;; it shows nothing else happened in between.
(gethash list undo-equiv-table))))
(setq undo-in-region
- (or (region-active-p) (and arg (not (numberp arg)))))
+ (and (or (region-active-p) (and arg (not (numberp arg))))
+ (not inhibit-region)))
(if undo-in-region
(undo-start (region-beginning) (region-end))
(undo-start))