]> git.eshelyaron.com Git - emacs.git/commitdiff
(tooltip-mode): Signal an error if x-show-tip
authorGerd Moellmann <gerd@gnu.org>
Mon, 18 Dec 2000 17:11:17 +0000 (17:11 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 18 Dec 2000 17:11:17 +0000 (17:11 +0000)
isn't fboundp.

lisp/ChangeLog
lisp/tooltip.el

index 1596b093cca56b8dd990c5960d917bf5e03c757c..3ef378073ea7b2769cd00b1a2a909bebb82d3bf1 100644 (file)
@@ -1,5 +1,8 @@
 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
 
+       * tooltip.el (tooltip-mode): Signal an error if x-show-tip
+       isn't fboundp.
+
        * server.el (server-buffer-done): Bury the buffer before
        killing it.
 
index dada23d0c2eb46b8fe267e0123344aa2fba990c1..e02eec718846b489a0fe98ba223f460898db6228 100644 (file)
@@ -197,6 +197,8 @@ This might return nil if the event did not occur over a buffer."
   "Mode for tooltip display.
 With ARG, turn tooltip mode on if and only if ARG is positive."
   (interactive "P")
+  (unless (fboundp 'x-show-tip)
+    (error "Sorry, tooltips are not yet available on this system"))
   (let* ((on (if arg
                 (> (prefix-numeric-value arg) 0)
               (not tooltip-mode)))