From: Juanma Barranquero Date: Thu, 8 May 2008 03:38:21 +0000 (+0000) Subject: (ad-special-form-p): Don't use `iff' in docstring. X-Git-Tag: emacs-pretest-23.0.90~5731 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec0159f04531e0e2296900d51445e3370761db28;p=emacs.git (ad-special-form-p): Don't use `iff' in docstring. --- 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." `(cdr ,definition)) (defun ad-special-form-p (definition) - "Non-nil iff DEFINITION is a special form." + "Non-nil if and only if DEFINITION is a special form." (if (and (symbolp definition) (fboundp definition)) (setq definition (indirect-function definition))) (and (subrp definition) (eq (cdr (subr-arity definition)) 'unevalled)))