]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable 'nobreak-char-display' in Eldoc buffers
authorAugusto Stoffel <arstoffel@gmail.com>
Tue, 5 Oct 2021 09:12:05 +0000 (11:12 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 5 Oct 2021 09:12:05 +0000 (11:12 +0200)
* lisp/emacs-lisp/eldoc.el (eldoc--format-doc-buffer): Set
'nobreak-char-display' to nil in Eldoc buffers (bug#50989).

lisp/emacs-lisp/eldoc.el

index 21f262adc6ec9a481d7295c2898fb7689ac575e4..a1c3c3268f2c4547f49dd5539beaf8d39f82864f 100644 (file)
@@ -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