From 56c98a4ad886376b3c73d6c8b9a96f6bca8f0f48 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sat, 4 Sep 2021 10:38:50 +0200 Subject: 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 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 -- cgit v1.2.1