diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-28 17:39:49 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-28 17:39:49 +0000 |
commit | a7f58f4be274cdabd21419392c1a6ba54661cd2c (patch) | |
tree | 4a0e723d4711748af3515a198e94a708ede31ef5 /lisp/emulation/edt.el | |
parent | c48254fbbfb493a29def89154bd43ca6923fdf2a (diff) | |
download | emacs-a7f58f4be274cdabd21419392c1a6ba54661cd2c.tar.gz emacs-a7f58f4be274cdabd21419392c1a6ba54661cd2c.tar.bz2 emacs-a7f58f4be274cdabd21419392c1a6ba54661cd2c.zip |
* cus-edit.el (custom-browse-insert-prefix):
* emulation/edt.el (edt-x-emacs19-p): Use featurep 'xemacs.
Diffstat (limited to 'lisp/emulation/edt.el')
-rw-r--r-- | lisp/emulation/edt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index bff1a583586..3ea7ebb5b12 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el @@ -325,7 +325,7 @@ This means that an edt-user.el file was found in the user's `load-path'.") "Non-nil if we are running GNU Emacs or XEmacs version 19, or higher.") (defconst edt-x-emacs19-p - (and edt-emacs19-p (string-match "XEmacs" emacs-version)) + (and edt-emacs19-p (featurep 'xemacs)) "Non-nil if we are running XEmacs version 19, or higher.") (defconst edt-gnu-emacs19-p (and edt-emacs19-p (not edt-x-emacs19-p)) |