# HG changeset patch # User Miles Bader # Date 997973536 0 # Node ID 43b2b9e04c57cb48d03fca353f585b2a1541e83a # Parent ba7523a60edc0f7a3d6503bef1a5a0567f910018 (comint-send-input): Add `inhibit-line-move-field-capture' property to input-terminating `boundary' overlays to avoid line-move wierdness. diff -r ba7523a60edc -r 43b2b9e04c57 lisp/comint.el --- a/lisp/comint.el Thu Aug 16 14:51:25 2001 +0000 +++ b/lisp/comint.el Thu Aug 16 14:52:16 2001 +0000 @@ -1450,6 +1450,7 @@ ;; 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)