gnus-salt.el (gnus--let-eval): Silence the Buildbot
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 6 Nov 2013 05:59:59 +0000 (05:59 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 6 Nov 2013 05:59:59 +0000 (05:59 +0000)
lisp/ChangeLog
lisp/gnus-salt.el

index ef841d3..9e12a35 100644 (file)
@@ -1,3 +1,7 @@
+2013-11-06  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-salt.el (gnus--let-eval): Silence the Buildbot.
+
 2013-11-05  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-cite.el (gnus-cite-add-face): Make non-sticky overlays.
index 77fe0d3..af93688 100644 (file)
@@ -652,7 +652,7 @@ BINDINGS is a `let'-style list of bindings to use for the environment.
 EVALSYM is then bound in BODY to a function that takes a sexp and evaluates
 it in the environment specified by BINDINGS."
   (declare (indent 2) (debug ((&rest (sym form)) sym body)))
-  (if (ignore-errors (let ((x 3)) (eq (eval '(- x 1) '((x . 4))) x)))
+  (if (eval '(ignore-errors (let ((x 3)) (eq (eval '(- x 1) '((x . 4))) x))))
       ;; Use lexical vars if possible.
       `(let* ((env (list ,@(mapcar (lambda (binding)
                                      `(cons ',(car binding) ,(cadr binding)))