aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-05-08 03:38:21 +0000
committerJuanma Barranquero2008-05-08 03:38:21 +0000
commitec0159f04531e0e2296900d51445e3370761db28 (patch)
treeb1a48698283396e4dbe3e356f71b7a90cea27bc8
parentcf43708e712ceffae3751c911031e34ea6d023c5 (diff)
downloademacs-ec0159f04531e0e2296900d51445e3370761db28.tar.gz
emacs-ec0159f04531e0e2296900d51445e3370761db28.zip
(ad-special-form-p): Don't use `iff' in docstring.
-rw-r--r--lisp/emacs-lisp/advice.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el
index 6c1f7be5c93..b4dcd24597a 100644
--- a/lisp/emacs-lisp/advice.el
+++ b/lisp/emacs-lisp/advice.el
@@ -2469,7 +2469,7 @@ will clear the cache."
2469 `(cdr ,definition)) 2469 `(cdr ,definition))
2470 2470
2471(defun ad-special-form-p (definition) 2471(defun ad-special-form-p (definition)
2472 "Non-nil iff DEFINITION is a special form." 2472 "Non-nil if and only if DEFINITION is a special form."
2473 (if (and (symbolp definition) (fboundp definition)) 2473 (if (and (symbolp definition) (fboundp definition))
2474 (setq definition (indirect-function definition))) 2474 (setq definition (indirect-function definition)))
2475 (and (subrp definition) (eq (cdr (subr-arity definition)) 'unevalled))) 2475 (and (subrp definition) (eq (cdr (subr-arity definition)) 'unevalled)))