]> git.eshelyaron.com Git - emacs.git/commitdiff
Inhibit undo-in-region for mouse-drag-region (bug#37700)
authorMattias Engdegård <mattiase@acm.org>
Thu, 31 Oct 2019 09:31:27 +0000 (10:31 +0100)
committerMattias Engdegård <mattiase@acm.org>
Thu, 31 Oct 2019 16:41:29 +0000 (17:41 +0100)
'mouse-drag-region' leaves the region active around the dragged text,
so a straight undo did not revert the entire operation.  To remedy
this, inhibit undo-in-region when the last command was
mouse-drag-region.  (Method suggested by Stefan Monnier.)

* lisp/mouse.el (undo-drag-region): Set the undo-inhibit-region property.
* lisp/simple.el (undo): Inhibit undo-in-region if the last command
had the undo-inhibit-region property set.
* doc/lispref/symbols.texi (Standard Properties):
* doc/lispref/text.texi (Undo): Document undo-inhibit-region.
* etc/NEWS: Announce the property.

doc/lispref/symbols.texi
doc/lispref/text.texi
etc/NEWS
lisp/mouse.el
lisp/simple.el

index 5d71fb39a25c34286d67bfbede594d6a2f23308c..936bda9b36e5c9cc12d4bdc617fe53ac0a610ca9 100644 (file)
@@ -590,6 +590,11 @@ ignore a call whose value is unused.  If the property's value is
 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
index ac444f6afeb75c7d45e7b5a2365d85f7cb3e2c88..9bc6213f3ac5b8e884b9d9d6d3a0171e08c0715c 100644 (file)
@@ -1451,6 +1451,12 @@ continuing to undo.
 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
 
index ee73d2414bda489e72c1acd288e6cfcc30a74e8b..7a76d90ed53249d76f72d874918db495c0496c05 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3102,6 +3102,12 @@ in other packages are now obsolete aliases of 'xor'.
 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
 
index 76fec507e71cbfa23d5e8ba08ec28c047203c3cc..4a351f7be25c7c3a511c18d47b0de6251d62f6d5 100644 (file)
@@ -1104,6 +1104,12 @@ is dragged over to."
     (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
index 29e195bca6c356ded4f400551ee6082c776a98a4..10aecd651f39b28df863a721afca717c2ec47e3e 100644 (file)
@@ -2508,6 +2508,10 @@ as an argument limits undo to changes within the current region."
         (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".
@@ -2525,7 +2529,8 @@ as an argument limits undo to changes within the current region."
                       ;; 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))