Further `with-demoted-errors' fixes.
authorLars Magne Ingebrigtsen <larsi@stories.gnus.org>
Mon, 21 Nov 2011 20:18:30 +0000 (21:18 +0100)
committerLars Magne Ingebrigtsen <larsi@stories.gnus.org>
Mon, 21 Nov 2011 20:18:30 +0000 (21:18 +0100)
lisp/dgnushack.el

index 987bb28..a2ef98b 100644 (file)
@@ -557,7 +557,7 @@ This is to be used around code which is not expected to signal an error
 but which should be robust in the unexpected case that an error is signaled."
     (declare (debug t) (indent 0))
     (let ((err (make-symbol "err")))
-      `(condition-case-no-debug ,err
+      `(condition-case ,err
           (progn ,@body)
         (error (message "Error: %S" ,err) nil)))))