diff lisp/tooltip.el @ 85529:84efd7d3c35e

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 22 Oct 2007 02:37:14 +0000
parents 9355f9b7bbff
children f6740b43efae 4bc33ffdda1a
line wrap: on
line diff
--- a/lisp/tooltip.el	Mon Oct 22 02:15:02 2007 +0000
+++ b/lisp/tooltip.el	Mon Oct 22 02:37:14 2007 +0000
@@ -273,7 +273,7 @@
 
 (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)))