aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorKim F. Storm2004-11-13 01:42:56 +0000
committerKim F. Storm2004-11-13 01:42:56 +0000
commit3b8370e18bc4b13ec80f9a8c196381aa0a8383ff (patch)
tree2350c3b4889f16465d1abd72e2fe4416374f154c /admin
parent0e18f366ff4108db4a120b879b7b3b0fa07ba2e5 (diff)
downloademacs-3b8370e18bc4b13ec80f9a8c196381aa0a8383ff.tar.gz
emacs-3b8370e18bc4b13ec80f9a8c196381aa0a8383ff.zip
Add bug:
** Partial highlighting of wrapped overlay
Diffstat (limited to 'admin')
-rw-r--r--admin/FOR-RELEASE26
1 files changed, 26 insertions, 0 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 4c2084af24c..609074efd3c 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -124,6 +124,32 @@ fit-window-to-buffer works well for me, so I guess
124Electric-pop-up-window can use it. 124Electric-pop-up-window can use it.
125 125
126 126
127** Partial highlighting of wrapped overlay
128
129From: Ralf Angeli <angeli@iwi.uni-sb.de>
130Date: Mon, 18 Oct 2004 19:09:19 +0200
131
132If you put
133
134(let* ((length (+ (- (window-width) (current-column)) 40))
135 (start (point))
136 (end (+ (point) length))
137 (string (make-string length ?x))
138 ov)
139 (insert string)
140 (setq ov (make-overlay start end))
141 (overlay-put ov 'mouse-face 'highlight)
142 (overlay-put ov 'display string))
143
144into the *scratch* buffer and type `C-x C-e' with point at the last
145parenthesis, you will get a string which does not fit into the line
146and has to be wrapped. If you move over it with your mouse, you
147should see that only the part on the second line is being highlighted.
148The full string is highlighted only if the 'display property is not
149set.
150
151
152
127* DOCUMENTATION 153* DOCUMENTATION
128 154
129** Document Custom Themes. 155** Document Custom Themes.