# HG changeset patch # User Andreas Schwab # Date 1281534229 -7200 # Node ID 0266442adf6acd1abd635cd629dd0dbad06617f9 # Parent fef8d4c0b9d414f89deb58b0dea84ab46766f777 * subr.el (ignore-errors): Add debug declaration. diff -r fef8d4c0b9d4 -r 0266442adf6a lisp/ChangeLog --- a/lisp/ChangeLog Mon Aug 09 08:51:28 2010 -0700 +++ b/lisp/ChangeLog Wed Aug 11 15:43:49 2010 +0200 @@ -1,3 +1,7 @@ +2010-08-11 Andreas Schwab + + * subr.el (ignore-errors): Add debug declaration. + 2010-08-09 Geoff Gole (tiny change) * whitespace.el (whitespace-color-off): Remove post-command-hook diff -r fef8d4c0b9d4 -r 0266442adf6a lisp/subr.el --- a/lisp/subr.el Mon Aug 09 08:51:28 2010 -0700 +++ b/lisp/subr.el Wed Aug 11 15:43:49 2010 +0200 @@ -219,6 +219,7 @@ (defmacro ignore-errors (&rest body) "Execute BODY; if an error occurs, return nil. Otherwise, return result of last form in BODY." + (declare (debug t) (indent 0)) `(condition-case nil (progn ,@body) (error nil))) ;;;; Basic Lisp functions.