diff options
| author | Dan Nicolaescu | 2007-10-22 02:37:14 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-10-22 02:37:14 +0000 |
| commit | 46447ab34e005237aa4aaecf0a5edc5bb2ba5246 (patch) | |
| tree | 1c445e87e3315a469e454f1a3bf56763ba58ceef /lisp/tooltip.el | |
| parent | e79beb56d95030348653a23b684f7f6492b5eaa7 (diff) | |
| download | emacs-46447ab34e005237aa4aaecf0a5edc5bb2ba5246.tar.gz emacs-46447ab34e005237aa4aaecf0a5edc5bb2ba5246.zip | |
* 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." | |||
| 273 | 273 | ||
| 274 | (defmacro tooltip-region-active-p () | 274 | (defmacro tooltip-region-active-p () |
| 275 | "Value is non-nil if the region is currently active." | 275 | "Value is non-nil if the region is currently active." |
| 276 | (if (string-match "^GNU" (emacs-version)) | 276 | (if (not (featurep 'xemacs)) |
| 277 | `(and transient-mark-mode mark-active) | 277 | `(and transient-mark-mode mark-active) |
| 278 | `(region-active-p))) | 278 | `(region-active-p))) |
| 279 | 279 | ||