]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-send-input): Add `inhibit-line-move-field-capture' property to
authorMiles Bader <miles@gnu.org>
Thu, 16 Aug 2001 14:52:16 +0000 (14:52 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 16 Aug 2001 14:52:16 +0000 (14:52 +0000)
input-terminating `boundary' overlays to avoid line-move wierdness.

lisp/comint.el

index 623a40d2c3b91c98a0a88847085d9d93d2a1a59d..05caf546cd2096b3319bc3724f3e9de8975a0119 100644 (file)
@@ -1450,6 +1450,7 @@ Similarly for Soar, Scheme, etc."
              ;; Make an overlay for the terminating newline
              (let ((over (make-overlay end (1+ end) nil t nil)))
                (overlay-put over 'field 'boundary)
+               (overlay-put over 'inhibit-line-move-field-capture t)
                (overlay-put over 'evaporate t))))
 
          (comint-snapshot-last-prompt)