diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/comint.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a0bfe340fe4..b696ad971a0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-19 Miles Bader <Miles Bader <miles@gnu.org>> | ||
| 2 | |||
| 3 | * comint.el (comint-output-filter): Make field properties for | ||
| 4 | output text front-sticky. | ||
| 5 | |||
| 1 | 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * vc-bzr.el (vc-bzr-show-log-entry): | 8 | * vc-bzr.el (vc-bzr-show-log-entry): |
diff --git a/lisp/comint.el b/lisp/comint.el index 917565dd157..6231a20b65a 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1774,7 +1774,9 @@ Make backspaces delete the previous character." | |||
| 1774 | (let ((inhibit-read-only t) | 1774 | (let ((inhibit-read-only t) |
| 1775 | (inhibit-modification-hooks t)) | 1775 | (inhibit-modification-hooks t)) |
| 1776 | (add-text-properties comint-last-output-start (point) | 1776 | (add-text-properties comint-last-output-start (point) |
| 1777 | '(rear-nonsticky t | 1777 | '(front-sticky |
| 1778 | (field inhibit-line-move-field-capture) | ||
| 1779 | rear-nonsticky t | ||
| 1778 | field output | 1780 | field output |
| 1779 | inhibit-line-move-field-capture t)))) | 1781 | inhibit-line-move-field-capture t)))) |
| 1780 | 1782 | ||