]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix rectangle commands when 'indent-tabs-mode' is non-nil
authorEli Zaretskii <eliz@gnu.org>
Thu, 28 Dec 2023 08:56:33 +0000 (10:56 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 28 Dec 2023 08:56:33 +0000 (10:56 +0200)
* lisp/rect.el (delete-rectangle, kill-rectangle): Temporarily
bind 'indent-tabs-mode' to nil.  (Bug#67925)

lisp/rect.el

index 9049e322ca626a29c20b2fccfb495a7d9b66fc23..525a15864342153293fccdb93ee55fc309bc8dc3 100644 (file)
@@ -282,7 +282,8 @@ When called from a program the rectangle's corners are START and END.
 With a prefix (or a FILL) argument, also fill lines where nothing has
 to be deleted."
   (interactive "*r\nP")
-  (apply-on-rectangle 'delete-rectangle-line start end fill))
+  (let (indent-tabs-mode)
+    (apply-on-rectangle 'delete-rectangle-line start end fill)))
 
 ;;;###autoload
 (defun delete-extract-rectangle (start end &optional fill)
@@ -337,7 +338,8 @@ you can use this command to copy text from a read-only buffer.
 even beep.)"
   (interactive "r\nP")
   (condition-case nil
-      (setq killed-rectangle (delete-extract-rectangle start end fill))
+      (let (indent-tabs-mode)
+        (setq killed-rectangle (delete-extract-rectangle start end fill)))
     ((buffer-read-only text-read-only)
      (setq deactivate-mark t)
      (setq killed-rectangle (extract-rectangle start end))