diff options
| author | Eric M. Ludlam | 2001-04-04 00:51:48 +0000 |
|---|---|---|
| committer | Eric M. Ludlam | 2001-04-04 00:51:48 +0000 |
| commit | d757aac1c927ffbf8edf60e49d8a8640a2a26ccb (patch) | |
| tree | 98c08f55e78ca2040cd3b448b3b876ba1cb41c4f | |
| parent | 9832760a3e77f2de803cf605129af8929677af38 (diff) | |
| download | emacs-d757aac1c927ffbf8edf60e49d8a8640a2a26ccb.tar.gz emacs-d757aac1c927ffbf8edf60e49d8a8640a2a26ccb.zip | |
(speedbar-insert-image-button-maybe): Check for `xemacs' feature
instead of for the function `set-extent-property'.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/speedbar.el | 2 |
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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-04-03 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2001-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) |