diff options
| author | Richard M. Stallman | 2005-07-25 03:21:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-07-25 03:21:36 +0000 |
| commit | 5eca5ecd545f54c271e9997907c5fdedda20104c (patch) | |
| tree | 0714004526ff7e1ec2a65ab4e92b0c3172bec9ab | |
| parent | 48ce962eafbf03fefc045a570da7313a39684641 (diff) | |
| download | emacs-5eca5ecd545f54c271e9997907c5fdedda20104c.tar.gz emacs-5eca5ecd545f54c271e9997907c5fdedda20104c.zip | |
(tooltip-mode): Test emacs-basic-display, not emacs-quick-startup.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/tooltip.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 47c2bceba8d..f0516519ade 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-07-24 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * tooltip.el (tooltip-mode): Test emacs-basic-display, | ||
| 4 | not emacs-quick-startup. | ||
| 5 | |||
| 1 | 2005-07-24 Juanma Barranquero <lekktu@gmail.com> | 6 | 2005-07-24 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * emacs-lisp/re-builder.el (reb-with-current-window): Delete. | 8 | * emacs-lisp/re-builder.el (reb-with-current-window): Delete. |
diff --git a/lisp/tooltip.el b/lisp/tooltip.el index 309edde1749..c8991c07e54 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el | |||
| @@ -159,7 +159,7 @@ This might return nil if the event did not occur over a buffer." | |||
| 159 | With ARG, turn tooltip mode on if and only if ARG is positive." | 159 | With ARG, turn tooltip mode on if and only if ARG is positive." |
| 160 | :global t | 160 | :global t |
| 161 | :init-value (not (or noninteractive | 161 | :init-value (not (or noninteractive |
| 162 | emacs-quick-startup | 162 | emacs-basic-display |
| 163 | (not (display-graphic-p)) | 163 | (not (display-graphic-p)) |
| 164 | (not (fboundp 'x-show-tip)))) | 164 | (not (fboundp 'x-show-tip)))) |
| 165 | :initialize 'custom-initialize-safe-default | 165 | :initialize 'custom-initialize-safe-default |