(tooltip-show-help-non-mode): Don't set tooltip-previous-message if
called with the same tooltip that is showing (Bug#2680).
This commit is contained in:
parent
17bc3e84b4
commit
9bec41decc
1 changed files with 4 additions and 2 deletions
|
|
@ -333,11 +333,13 @@ the buffer of PROCESS."
|
|||
(not cursor-in-echo-area)) ;Don't overwrite a prompt.
|
||||
(cond
|
||||
((stringp help)
|
||||
(unless tooltip-previous-message
|
||||
(setq help (replace-regexp-in-string "\n" ", " help))
|
||||
(unless (or tooltip-previous-message
|
||||
(string-equal help (current-message)))
|
||||
(setq tooltip-previous-message (current-message)))
|
||||
(let ((message-truncate-lines t)
|
||||
(message-log-max nil))
|
||||
(message "%s" (replace-regexp-in-string "\n" ", " help))))
|
||||
(message "%s" help)))
|
||||
((stringp tooltip-previous-message)
|
||||
(let ((message-log-max nil))
|
||||
(message "%s" tooltip-previous-message)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue