aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/speedbar.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dfacf7c2f72..1f65e55d557 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-04-03 Eric M. Ludlam <eric@siege-engine.com>
2
3 * speedbar.el (speedbar-insert-image-button-maybe): Check for
4 `xemacs' feature instead of for the function `set-extent-property'.
5
12001-04-03 Stefan Monnier <monnier@cs.yale.edu> 62001-04-03 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * mail/mh-utils.el (mh-folder-hist): New var. 8 * mail/mh-utils.el (mh-folder-hist): New var.
diff --git a/lisp/speedbar.el b/lisp/speedbar.el
index 97e2a582f48..a880e571320 100644
--- a/lisp/speedbar.el
+++ b/lisp/speedbar.el
@@ -4318,7 +4318,7 @@ If we have an image associated with it, use that image."
4318 ;; underlying text. This means if we leave it tangible, then I 4318 ;; underlying text. This means if we leave it tangible, then I
4319 ;; don't have to change said giant piles o code. 4319 ;; don't have to change said giant piles o code.
4320 (if (and a (symbol-value (cdr a))) 4320 (if (and a (symbol-value (cdr a)))
4321 (if (fboundp 'set-extent-property) 4321 (if (featurep 'xemacs)
4322 (add-text-properties (+ start (length bt)) start 4322 (add-text-properties (+ start (length bt)) start
4323 (list 'end-glyph (symbol-value (cdr a)) 4323 (list 'end-glyph (symbol-value (cdr a))
4324 'rear-nonsticky (list 'display) 4324 'rear-nonsticky (list 'display)