diff --git a/core/core.el b/core/core.el index 145fcbea4..810ac63dd 100644 --- a/core/core.el +++ b/core/core.el @@ -139,7 +139,9 @@ melodramatic ex-vimmer disappointed with the text-editor status quo." is to include more information in the error message, without sacrificing your ability to invoke the debugger in debug mode." (condition-case-unless-debug ex - (funcall fn) + (if noninteractive + (quiet! (funcall fn)) + (funcall fn)) ('error (lwarn hook :error "%s in '%s' -> %s"