diff options
| author | Dan Nicolaescu | 2007-09-22 03:11:04 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-09-22 03:11:04 +0000 |
| commit | 4211e4349d5f4af054de23de284b9fff451d3cc0 (patch) | |
| tree | 29b18b1fa0ee7c7167cc79bafee1ea888e6cc232 | |
| parent | 055f99f4994fbceee7652e4159110e1b6a17a0fa (diff) | |
| download | emacs-4211e4349d5f4af054de23de284b9fff451d3cc0.tar.gz emacs-4211e4349d5f4af054de23de284b9fff451d3cc0.zip | |
(bookmark-xemacsp): Remove.
(bookmark-make): Don't use bookmark-xemacsp, use
(featurep 'xemacs) instead.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/bookmark.el | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f0b813e44bb..6d3909928c8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2007-09-22 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2007-09-22 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * bookmark.el (bookmark-xemacsp): Remove. | ||
| 4 | (bookmark-make): Don't use bookmark-xemacsp, use | ||
| 5 | (featurep 'xemacs) instead. | ||
| 6 | |||
| 3 | * speedbar.el (speedbar-frame-mode) | 7 | * speedbar.el (speedbar-frame-mode) |
| 4 | (speedbar-frame-reposition-smartly) | 8 | (speedbar-frame-reposition-smartly) |
| 5 | (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps) | 9 | (speedbar-set-mode-line-format, speedbar-reconfigure-keymaps) |
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index c1904cb0393..47a1d651598 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el | |||
| @@ -207,11 +207,6 @@ following in your `.emacs' file: | |||
| 207 | 207 | ||
| 208 | ;;; No user-serviceable parts beyond this point. | 208 | ;;; No user-serviceable parts beyond this point. |
| 209 | 209 | ||
| 210 | ;; Is it XEmacs? | ||
| 211 | (defconst bookmark-xemacsp | ||
| 212 | (string-match "\\(Lucid\\|Xemacs\\)" emacs-version)) | ||
| 213 | |||
| 214 | |||
| 215 | ;; Added for lucid emacs compatibility, db | 210 | ;; Added for lucid emacs compatibility, db |
| 216 | (or (fboundp 'defalias) (fset 'defalias 'fset)) | 211 | (or (fboundp 'defalias) (fset 'defalias 'fset)) |
| 217 | 212 | ||
| @@ -495,7 +490,7 @@ Optional fourth arg INFO-NODE means this bookmark is at info node | |||
| 495 | INFO-NODE, so record this fact in the bookmark's entry." | 490 | INFO-NODE, so record this fact in the bookmark's entry." |
| 496 | (bookmark-maybe-load-default-file) | 491 | (bookmark-maybe-load-default-file) |
| 497 | (let ((stripped-name (copy-sequence name))) | 492 | (let ((stripped-name (copy-sequence name))) |
| 498 | (or bookmark-xemacsp | 493 | (or (featurep 'xemacs) |
| 499 | ;; XEmacs's `set-text-properties' doesn't work on | 494 | ;; XEmacs's `set-text-properties' doesn't work on |
| 500 | ;; free-standing strings, apparently. | 495 | ;; free-standing strings, apparently. |
| 501 | (set-text-properties 0 (length stripped-name) nil stripped-name)) | 496 | (set-text-properties 0 (length stripped-name) nil stripped-name)) |