summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-03-05 08:48:29 +0000
committerGlenn Morris <rgm@gnu.org>2008-03-05 08:48:29 +0000
commitdc3fbc6a364ccb6a828a6b884f96342701ae23dd (patch)
tree48269b55d759e477a1ccb65dcaf51ff17a0dd06c
parent03365d0eb5c09d346c56437912a4ddd9b0884ac9 (diff)
downloademacs-dc3fbc6a364ccb6a828a6b884f96342701ae23dd.tar.gz
Expand all ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
-rw-r--r--lisp/ediff-diff.el2
-rw-r--r--lisp/ediff-help.el15
2 files changed, 7 insertions, 10 deletions
diff --git a/lisp/ediff-diff.el b/lisp/ediff-diff.el
index b690bfbe4e1..00060a9e974 100644
--- a/lisp/ediff-diff.el
+++ b/lisp/ediff-diff.el
@@ -1311,7 +1311,7 @@ These characters are ignored when differing regions are split into words.")
(make-variable-buffer-local 'ediff-whitespace)
(defvar ediff-word-1
- (ediff-cond-compile-for-xemacs-or-emacs "a-zA-Z---_" "-[:word:]_")
+ (if (featurep 'xemacs) "a-zA-Z---_" "-[:word:]_")
"*Characters that constitute words of type 1.
More precisely, [ediff-word-1] is a regexp that matches type 1 words.
See `ediff-forward-word' for more details.")
diff --git a/lisp/ediff-help.el b/lisp/ediff-help.el
index 97da0d89b7b..988fc9171ac 100644
--- a/lisp/ediff-help.el
+++ b/lisp/ediff-help.el
@@ -190,15 +190,12 @@ the value of this variable and the variables `ediff-help-message-*' in
(let ((pos (ediff-event-point last-command-event))
overl cmd)
- (ediff-cond-compile-for-xemacs-or-emacs
- ;; xemacs
- (setq overl (extent-at pos (current-buffer) 'ediff-help-info)
- cmd (ediff-overlay-get overl 'ediff-help-info))
- ;; emacs
- (setq cmd (car (mapcar (lambda (elt)
- (overlay-get elt 'ediff-help-info))
- (overlays-at pos))))
- )
+ (if (featurep 'xemacs)
+ (setq overl (extent-at pos (current-buffer) 'ediff-help-info)
+ cmd (ediff-overlay-get overl 'ediff-help-info))
+ (setq cmd (car (mapcar (lambda (elt)
+ (overlay-get elt 'ediff-help-info))
+ (overlays-at pos)))))
(if (not (stringp cmd))
(error "Hmm... I don't see an Ediff command around here..."))