Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c6da4eb4
Commit
c6da4eb4
authored
Dec 18, 2000
by
Gerd Moellmann
Browse files
(tooltip-mode): Signal an error if x-show-tip
isn't fboundp.
parent
6d34f495
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/tooltip.el
lisp/tooltip.el
+2
-0
No files found.
lisp/ChangeLog
View file @
c6da4eb4
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.
...
...
lisp/tooltip.el
View file @
c6da4eb4
...
...
@@ -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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment