Disable 'nobreak-char-display' in Eldoc buffers
* lisp/emacs-lisp/eldoc.el (eldoc--format-doc-buffer): Set 'nobreak-char-display' to nil in Eldoc buffers (bug#50989).
This commit is contained in:
parent
570e2c9a17
commit
90575a6c0c
1 changed files with 1 additions and 0 deletions
|
@ -477,6 +477,7 @@ This holds the results of the last documentation request."
|
|||
(let ((inhibit-read-only t)
|
||||
(things-reported-on))
|
||||
(erase-buffer) (setq buffer-read-only t)
|
||||
(setq-local nobreak-char-display nil)
|
||||
(local-set-key "q" 'quit-window)
|
||||
(cl-loop for (docs . rest) on docs
|
||||
for (this-doc . plist) = docs
|
||||
|
|
Loading…
Add table
Reference in a new issue