diff lisp/subr.el @ 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 fd36a980d701
children 755ae5b97edb
line wrap: on
line diff
--- 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.