diff options
| -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 |