]> git.eshelyaron.com Git - emacs.git/commitdiff
(tooltip-mode): Use `custom-initialize-safe-default' and simplify
authorLuc Teirlinck <teirllm@auburn.edu>
Thu, 14 Jul 2005 00:56:53 +0000 (00:56 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Thu, 14 Jul 2005 00:56:53 +0000 (00:56 +0000)
:init-value again.  Delete autoload.

lisp/tooltip.el

index fabb154d7edc84dfe00aae3ed88a3ecb28e853a8..309edde1749a1e860fac0f1b114fbcb56a9ec3ed 100644 (file)
@@ -154,18 +154,15 @@ This might return nil if the event did not occur over a buffer."
 ;; set-buffer prevents redisplay optimizations, so every mouse motion
 ;; would be accompanied by a full redisplay.
 
-;;;###autoload
 (define-minor-mode tooltip-mode
   "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
-                      (and (boundp 'emacs-quick-startup) emacs-quick-startup)
-                      (not (and (fboundp 'display-graphic-p)
-                                (display-graphic-p)))
+                      emacs-quick-startup
+                      (not (display-graphic-p))
                       (not (fboundp 'x-show-tip))))
+  :initialize 'custom-initialize-safe-default
   :group 'tooltip
   (unless (or (null tooltip-mode) (fboundp 'x-show-tip))
     (error "Sorry, tooltips are not yet available on this system"))