emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112247: * emacs-lisp/ert.el: Fix par


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112247: * emacs-lisp/ert.el: Fix paren typo.
Date: Sun, 07 Apr 2013 16:42:11 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112247
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Sun 2013-04-07 16:42:11 -0400
message:
  * emacs-lisp/ert.el: Fix paren typo.
modified:
  lisp/emacs-lisp/ert.el
=== modified file 'lisp/emacs-lisp/ert.el'
--- a/lisp/emacs-lisp/ert.el    2013-04-07 18:56:28 +0000
+++ b/lisp/emacs-lisp/ert.el    2013-04-07 20:42:11 +0000
@@ -464,7 +464,7 @@
   "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 @@
   "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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]