; * lisp/emacs-lisp/eldoc.el (eldoc-doc-buffer-separator): Fix doc.

This commit is contained in:
Yuan Fu 2023-03-24 11:34:39 -07:00
parent 455412dd89
commit f446bfc819
No known key found for this signature in database
GPG key ID: 56E19BC57664A442

View file

@ -500,8 +500,8 @@ If INTERACTIVE, display it. Else, return said buffer."
(t (current-buffer)))))
(defvar eldoc-doc-buffer-separator
"String used to separate items in Eldoc documentation buffer."
(concat "\n" (propertize "\n" 'face '(:inherit separator-line :extend t)) "\n"))
(concat "\n" (propertize "\n" 'face '(:inherit separator-line :extend t)) "\n")
"String used to separate items in Eldoc documentation buffer.")
(defun eldoc--format-doc-buffer (docs)
"Ensure DOCS are displayed in an *eldoc* buffer."