Mercurial > emacs
changeset 92500:50e6d60be93b
Expand all ediff-cond-compile-for-xemacs-or-emacs calls to a featurep test.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 05 Mar 2008 08:48:11 +0000 |
parents | 88d1a8b0752e |
children | 956adeeb0083 |
files | lisp/ediff-diff.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ediff-diff.el Wed Mar 05 05:12:06 2008 +0000 +++ b/lisp/ediff-diff.el Wed Mar 05 08:48:11 2008 +0000 @@ -1311,7 +1311,7 @@ (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.")