From: Lars Ingebrigtsen Date: Sat, 4 Sep 2021 08:38:50 +0000 (+0200) Subject: Improve error message in ielm on printing errors X-Git-Tag: emacs-28.0.90~1185 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=56c98a4ad886376b3c73d6c8b9a96f6bca8f0f48;p=emacs.git 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). --- diff --git a/lisp/ielm.el b/lisp/ielm.el index fd8dac74b74..39820a893a9 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