]> git.eshelyaron.com Git - emacs.git/commitdiff
(tooltip-mode): Specify correct standard value for Custom in init-value.
authorLuc Teirlinck <teirllm@auburn.edu>
Sat, 16 Apr 2005 00:21:56 +0000 (00:21 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Sat, 16 Apr 2005 00:21:56 +0000 (00:21 +0000)
lisp/tooltip.el

index 59f82c12e319d35270770c3e9e32aa83effcdf9f..f0620003cd6daf094d34a624dc7615ac019ae806 100644 (file)
@@ -187,6 +187,12 @@ This might return nil if the event did not occur over a buffer."
   "Toggle Tooltip display.
 With ARG, turn tooltip mode on if and only if ARG is positive."
   :global t
+  ;; If you change the :init-value below, you also need to change the
+  ;; corresponding code in startup.el.
+  :init-value (not (or noninteractive
+                      emacs-quick-startup
+                      (not (display-graphic-p))
+                      (not (fboundp 'x-show-tip))))
   :group 'tooltip
   (unless (or (null tooltip-mode) (fboundp 'x-show-tip))
     (error "Sorry, tooltips are not yet available on this system"))