* lisp/emacs-lisp/ert.el (ert--special-operator-p): Fix previous.
This commit is contained in:
parent
9b909c4265
commit
b0481de73b
1 changed files with 1 additions and 1 deletions
|
@ -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)))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue