emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master b0481de: * lisp/emacs-lisp/ert.el (ert--special-ope


From: Glenn Morris
Subject: [Emacs-diffs] master b0481de: * lisp/emacs-lisp/ert.el (ert--special-operator-p): Fix previous.
Date: Fri, 01 May 2015 15:30:37 +0000

branch: master
commit b0481de73be9fb7c4839340de2b494f19041130a
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * lisp/emacs-lisp/ert.el (ert--special-operator-p): Fix previous.
---
 lisp/emacs-lisp/ert.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el
index 384fef5..8dc8261 100644
--- a/lisp/emacs-lisp/ert.el
+++ b/lisp/emacs-lisp/ert.el
@@ -269,7 +269,7 @@ DATA is displayed to the user and should state the reason 
for skipping."
 (defun ert--special-operator-p (thing)
   "Return non-nil if THING is a symbol naming a special operator."
   (and (symbolp thing)
-       (let ((definition (ignore-errors (indirect-function thing))))
+       (let ((definition (indirect-function thing)))
          (and (subrp definition)
               (eql (cdr (subr-arity definition)) 'unevalled)))))
 



reply via email to

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