From: Stefan Monnier Date: Sun, 7 Apr 2013 20:42:11 +0000 (-0400) Subject: * emacs-lisp/ert.el: Fix paren typo. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~508 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=285c8184afc5b3ad20b21947ac4c8fee7668c516;p=emacs.git * emacs-lisp/ert.el: Fix paren typo. --- diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el index a9c06b05028..656cb0a6a14 100644 --- a/lisp/emacs-lisp/ert.el +++ b/lisp/emacs-lisp/ert.el @@ -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)