# HG changeset patch # User Juanma Barranquero # Date 1210217901 0 # Node ID f94711def01d9b09addbbbabf52629804b6fa532 # Parent 3a7862f514d0fd6880d9ea862ea6adf647100c01 (ad-special-form-p): Don't use `iff' in docstring. diff -r 3a7862f514d0 -r f94711def01d lisp/emacs-lisp/advice.el --- a/lisp/emacs-lisp/advice.el Thu May 08 03:37:39 2008 +0000 +++ b/lisp/emacs-lisp/advice.el Thu May 08 03:38:21 2008 +0000 @@ -2469,7 +2469,7 @@ `(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)))