From: Augusto Stoffel Date: Tue, 5 Oct 2021 09:12:05 +0000 (+0200) Subject: Disable 'nobreak-char-display' in Eldoc buffers X-Git-Tag: emacs-28.0.90~398 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=90575a6c0c17e88671999867f0773fef5ea516a8;p=emacs.git 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). --- diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index 21f262adc6e..a1c3c3268f2 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -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