]> git.eshelyaron.com Git - emacs.git/commitdiff
(cua--rectangle-operation): Let bind
authorKim F. Storm <storm@cua.dk>
Sun, 12 Sep 2004 20:26:39 +0000 (20:26 +0000)
committerKim F. Storm <storm@cua.dk>
Sun, 12 Sep 2004 20:26:39 +0000 (20:26 +0000)
inhibit-field-text-motion to t so rectangles work in comint buffers.

lisp/emulation/cua-rect.el

index 10d369fa042af6983194dc221c5d1cff4fc8ee73..742ae2033be9167bd9e79f59c565f347a4045bc6 100644 (file)
@@ -559,7 +559,8 @@ If command is repeated at same position, delete the rectangle."
   ;; Rectangle is padded if PAD = t or numeric and (cua--rectangle-virtual-edges)
   ;; Perform auto-tabify after operation if TABIFY is non-nil.
   ;; Mark is kept if keep-clear is 'keep and cleared if keep-clear is 'clear.
-  (let* ((start (cua--rectangle-top))
+  (let* ((inhibit-field-text-motion t)
+        (start (cua--rectangle-top))
          (end   (cua--rectangle-bot))
          (l (cua--rectangle-left))
          (r (1+ (cua--rectangle-right)))