Mercurial > emacs
changeset 38848:43b2b9e04c57
(comint-send-input): Add `inhibit-line-move-field-capture' property to
input-terminating `boundary' overlays to avoid line-move wierdness.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Thu, 16 Aug 2001 14:52:16 +0000 |
parents | ba7523a60edc |
children | 4998d97a9215 |
files | lisp/comint.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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)