emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 56c98a4: Improve error message in ielm on printing errors


From: Lars Ingebrigtsen
Subject: master 56c98a4: Improve error message in ielm on printing errors
Date: Sat, 4 Sep 2021 04:41:22 -0400 (EDT)

branch: master
commit 56c98a4ad886376b3c73d6c8b9a96f6bca8f0f48
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Improve error message in ielm on printing errors
    
    * lisp/ielm.el (ielm-eval-input): Don't claim that there's a bug
    on pp -- it may just be something that nests too far (bug#18012).
---
 lisp/ielm.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/ielm.el b/lisp/ielm.el
index fd8dac7..39820a8 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -440,8 +440,7 @@ nonempty, then flushes the buffer."
                                  (concat (buffer-string) aux))))))
           (error
            (setq error-type "IELM Error")
-           (setq result (format "Error during pretty-printing (bug in pp): %S"
-                                err)))
+           (setq result (format "Error during pretty-printing: %S" err)))
           (quit  (setq error-type "IELM Error")
                  (setq result "Quit during pretty-printing"))))
       (if error-type



reply via email to

[Prev in Thread] Current Thread [Next in Thread]