]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (with-demoted-errors): Better message and location.
authorMattias Engdegård <mattiase@acm.org>
Wed, 28 Dec 2022 12:10:35 +0000 (13:10 +0100)
committerMattias Engdegård <mattiase@acm.org>
Thu, 29 Dec 2022 10:03:03 +0000 (11:03 +0100)
lisp/subr.el

index d24169276a5dc271a96b773e7624ac32beec24ec..f0081de0619bec7104cc7d62e32cd52b8d9ea391 100644 (file)
@@ -4850,6 +4850,7 @@ but that should be robust in the unexpected case that an error is signaled."
   (declare (debug t) (indent 1))
   (let* ((err (make-symbol "err"))
          (orig-body body)
+         (orig-format format)
          (format (if (and (stringp format) body) format
                    (prog1 "Error: %S"
                      (if format (push format body)))))
@@ -4860,7 +4861,9 @@ but that should be robust in the unexpected case that an error is signaled."
     (if (eq orig-body body) exp
       ;; The use without `format' is obsolete, let's warn when we bump
       ;; into any such remaining uses.
-      (macroexp-warn-and-return "Missing format argument" exp nil nil format))))
+      (macroexp-warn-and-return
+       "Missing format argument in `with-demote-errors'" exp nil nil
+       orig-format))))
 
 (defmacro combine-after-change-calls (&rest body)
   "Execute BODY, but don't call the after-change functions till the end.