diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-22 02:37:14 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-10-22 02:37:14 +0000 |
commit | 46447ab34e005237aa4aaecf0a5edc5bb2ba5246 (patch) | |
tree | 1c445e87e3315a469e454f1a3bf56763ba58ceef /lisp/tooltip.el | |
parent | e79beb56d95030348653a23b684f7f6492b5eaa7 (diff) | |
download | emacs-46447ab34e005237aa4aaecf0a5edc5bb2ba5246.tar.gz |
* mail/vms-pmail.el (insert-signature): Don't use end-of-buffer.
* tooltip.el: Use featurep 'xemacs.
* printing.el: Move variable definitions before use, no code
change.
Diffstat (limited to 'lisp/tooltip.el')
-rw-r--r-- | lisp/tooltip.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tooltip.el b/lisp/tooltip.el index a5d0309f125..ffbebf06245 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -273,7 +273,7 @@ is based on the current syntax table." (defmacro tooltip-region-active-p () "Value is non-nil if the region is currently active." - (if (string-match "^GNU" (emacs-version)) + (if (not (featurep 'xemacs)) `(and transient-mark-mode mark-active) `(region-active-p))) |