mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-22 18:35:09 +00:00
Fix reference to 'x-max-tooltip-size' in complete.el
* lisp/cedet/semantic/complete.el: Don't assume that x-max-tooltip-size is a cons cell.
This commit is contained in:
parent
e2df22fa01
commit
4a4fcf628e
@ -1638,8 +1638,10 @@ This will not happen if you directly set this variable via `setq'."
|
||||
:set (lambda (sym var)
|
||||
(set-default sym var)
|
||||
(when (boundp 'x-max-tooltip-size)
|
||||
(setcdr x-max-tooltip-size (max (1+ var) (cdr x-max-tooltip-size))))))
|
||||
|
||||
(if (not (consp x-max-tooltip-size))
|
||||
(setq x-max-tooltip-size '(80 . 40)))
|
||||
(setcdr x-max-tooltip-size
|
||||
(max (1+ var) (cdr x-max-tooltip-size))))))
|
||||
|
||||
(defclass semantic-displayer-tooltip (semantic-displayer-traditional)
|
||||
((mode :initarg :mode
|
||||
|
Loading…
Reference in New Issue
Block a user