aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorMiles Bader2002-06-10 08:14:59 +0000
committerMiles Bader2002-06-10 08:14:59 +0000
commit3238a55c37a3ec4e73ffd4a3202d70fd231328ac (patch)
treed7d6b8de68b26d2604df018363e8728b240a1067 /lisp/ChangeLog
parent85fd1cfa83bfff596fabab6d26fd6207c158d858 (diff)
downloademacs-3238a55c37a3ec4e73ffd4a3202d70fd231328ac.tar.gz
emacs-3238a55c37a3ec4e73ffd4a3202d70fd231328ac.zip
Make comint use text properties for highlighting instead of overlays:
(comint-last-output-overlay): Variable removed. (comint-send-input, comint-output-filter): Use text properties instead of overlays. (comint-insert-clicked-input): Rewrite to work with text properties as well as overlays. (comint-snapshot-last-prompt): Snapshot using text properties. (comint-get-old-input-default, comint-extract-string): Don't copy text properties.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fcd53795c80..cd4ccd1e490 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,15 @@
12002-06-10 Miles Bader <miles@gnu.org> 12002-06-10 Miles Bader <miles@gnu.org>
2 2
3 Make comint use text properties for highlighting instead of overlays:
4 * comint.el (comint-last-output-overlay): Variable removed.
5 (comint-send-input, comint-output-filter): Use text properties
6 instead of overlays.
7 (comint-insert-clicked-input): Rewrite to work with text
8 properties as well as overlays
9 (comint-snapshot-last-prompt): Snapshot using text properties.
10 (comint-get-old-input-default, comint-extract-string): Don't copy
11 text properties.
12
3 * simple.el (line-move-finish): Inhibit field motion when 13 * simple.el (line-move-finish): Inhibit field motion when
4 computing `line-end'. 14 computing `line-end'.
5 15