Mercurial > hg > xemacs-beta
changeset 4817:0142cb4d1049
Fix a bug I introduced in #'with-trapping-errors.
2010-01-09 Aidan Kehoe <kehoea@parhasard.net>
* subr.el (with-trapping-errors):
Fix a bug here, where I used a normal quote instead of a
backquote. Thank you the byte-compiler.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 09 Jan 2010 14:55:13 +0000 |
parents | 576f09d387d5 |
children | 1360b0c147c1 |
files | lisp/ChangeLog lisp/subr.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Jan 09 15:49:38 2010 +0100 +++ b/lisp/ChangeLog Sat Jan 09 14:55:13 2010 +0000 @@ -1,3 +1,9 @@ +2010-01-09 Aidan Kehoe <kehoea@parhasard.net> + + * subr.el (with-trapping-errors): + Fix a bug here, where I used a normal quote instead of a + backquote. Thank you the byte-compiler. + 2010-01-08 Aidan Kehoe <kehoea@parhasard.net> * indent.el (indent-region):
--- a/lisp/subr.el Sat Jan 09 15:49:38 2010 +0100 +++ b/lisp/subr.el Sat Jan 09 14:55:13 2010 +0000 @@ -1509,7 +1509,7 @@ (progn ,@keys-body))) (error ,error-form - ,@(if resignal '((signal (car ,cte-cc-var) (cdr ,cte-cc-var))))) + ,@(if resignal `((signal (car ,cte-cc-var) (cdr ,cte-cc-var))))) ))) ;;;; Miscellanea.