Improve robustness of eldoc-box-help-at-point

* eldoc-box.el:
(eldoc-box-help-at-point): Guard against unbound variable error.
This commit is contained in:
Yuan Fu 2023-02-27 18:29:05 -08:00
parent eea7dd8371
commit b4662208cb
No known key found for this signature in database
GPG Key ID: 56E19BC57664A442

View File

@ -206,16 +206,18 @@ If (point) != last point, cleanup frame.")
(eldoc-box-quit-frame)
(kill-local-variable 'eldoc-display-functions)))
;;;###autoload
(defun eldoc-box-help-at-point ()
"Display documentation of the symbol at point."
(interactive)
(when (boundp 'eldoc--doc-buffer)
(let ((eldoc-box-position-function
#'eldoc-box--default-at-point-position-function))
(eldoc-box--display
(with-current-buffer eldoc--doc-buffer
(buffer-string))))
(setq eldoc-box--help-at-point-last-point (point))
(run-with-timer 0.1 nil #'eldoc-box--help-at-point-cleanup))
(run-with-timer 0.1 nil #'eldoc-box--help-at-point-cleanup)))
;;;; Backstage
;;;;; Variable