(comint-send-input): Add `inhibit-line-move-field-capture' property to

input-terminating `boundary' overlays to avoid line-move wierdness.
This commit is contained in:
Miles Bader 2001-08-16 14:52:16 +00:00
parent 50af0a5b40
commit 8c24e65bee

View 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)