]> git.eshelyaron.com Git - emacs.git/commitdiff
Prevent infloop in Eldoc message truncation algorithm
authorJoão Távora <joaotavora@gmail.com>
Thu, 9 Jul 2020 16:51:38 +0000 (17:51 +0100)
committerJoão Távora <joaotavora@gmail.com>
Thu, 9 Jul 2020 17:07:22 +0000 (18:07 +0100)
The truncation algorithm still has a long way to go for very narrow
frame sizes.  It should become a generic mechanism that would allows
one to truncate a string so that fits in N possibly truncated screen
lines of a full-width window.

* lisp/emacs-lisp/eldoc.el (eldoc-handle-docs): Tweak

lisp/emacs-lisp/eldoc.el

index 9efd770dca6a189238a46c8cf8b5e5250382061f..24b6ceca48a3ed1f8fb7518bc9adfab33fe1ca0e 100644 (file)
@@ -479,7 +479,7 @@ Honor most of `eldoc-echo-area-use-multiline-p'."
                  (count-screen-lines (point-min) (point) t (minibuffer-window)))
              while (> needed (if truncated (1- available) available))
              do (goto-char (line-end-position (if truncated 0 -1)))
-             (while (bolp) (goto-char (line-end-position 0)))
+             (while (and (not (bobp)) (bolp)) (goto-char (line-end-position 0)))
              finally
              (unless (and truncated
                           eldoc-prefer-doc-buffer