]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp/ert.el: Fix paren typo.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 7 Apr 2013 20:42:11 +0000 (16:42 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 7 Apr 2013 20:42:11 +0000 (16:42 -0400)
lisp/emacs-lisp/ert.el

index a9c06b0502850e98344b585e9b69a715ea8432f0..656cb0a6a142795ab897dc401ca009830f76c927 100644 (file)
@@ -464,7 +464,7 @@ FORM-DESCRIPTION-FORM before it has called INNER-FORM."
   "Evaluate FORM.  If it returns nil, abort the current test as failed.
 
 Returns the value of FORM."
-  (declare (debug t)))
+  (declare (debug t))
   (ert--expand-should `(should ,form) form
                       (lambda (inner-form form-description-form _value-var)
                         `(unless ,inner-form
@@ -474,7 +474,7 @@ Returns the value of FORM."
   "Evaluate FORM.  If it returns non-nil, abort the current test as failed.
 
 Returns nil."
-  (declare (debug t)))
+  (declare (debug t))
   (ert--expand-should `(should-not ,form) form
                       (lambda (inner-form form-description-form _value-var)
                         `(unless (not ,inner-form)