diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-21 07:33:32 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-21 07:33:32 +0000 |
commit | 2f42c75fb05cd3c481dc191436e6f1b28669338a (patch) | |
tree | 15c1eaeaf0eb47a1ee5175d1cbe79728102e0116 /lisp/obsolete | |
parent | 3b0664df0333a6a53677afa99495852cf81646fd (diff) | |
download | emacs-2f42c75fb05cd3c481dc191436e6f1b28669338a.tar.gz |
* progmodes/gud.el (gud-target-name): Move definition before use.
* progmodes/dcl-mode.el: Require imenu at compile time.
* progmodes/cc-engine.el (c-maybe-stale-found-type): Pacify
byte-compiler.
* obsolete/fast-lock.el: Use featurep test instead of
string-match.
* eshell/esh-mode.el (eshell-handle-ansi-color): Require
ansi-color at compile time too.
* eshell/em-unix.el (eshell/info): Require info at compile time
too.
* w32-fns.el: Require w32-vars.
* diff-mode.el (diff-refine-hunk): Require smerge-mode at compile
time too.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r-- | lisp/obsolete/fast-lock.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el index 569771143e3..dd33fe0b461 100644 --- a/lisp/obsolete/fast-lock.el +++ b/lisp/obsolete/fast-lock.el @@ -768,7 +768,7 @@ See `fast-lock-get-face-properties'." ;; Functions for XEmacs: -(when (save-match-data (string-match "XEmacs" (emacs-version))) +(when (featurep 'xemacs) ;; ;; It would be better to use XEmacs' `map-extents' over extents with a ;; `font-lock' property, but `face' properties are on different extents. |