changeset 78474:88c9f4e4160e

Replace `iff' in doc-strings and comments.
author Glenn Morris <rgm@gnu.org>
date Wed, 08 Aug 2007 07:15:45 +0000
parents 793ccd507663
children 0f4347da9a51
files lisp/emacs-lisp/byte-opt.el lisp/emacs-lisp/easymenu.el lisp/emacs-lisp/rx.el lisp/emacs-lisp/unsafep.el
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/byte-opt.el	Wed Aug 08 07:15:01 2007 +0000
+++ b/lisp/emacs-lisp/byte-opt.el	Wed Aug 08 07:15:45 2007 +0000
@@ -564,7 +564,7 @@
 	       (cons fn args)))))))
 
 (defun byte-optimize-all-constp (list)
-  "Non-nil iff all elements of LIST satisfy `byte-compile-constp'."
+  "Non-nil if all elements of LIST satisfy `byte-compile-constp'."
   (let ((constant t))
     (while (and list constant)
       (unless (byte-compile-constp (car list))
--- a/lisp/emacs-lisp/easymenu.el	Wed Aug 08 07:15:01 2007 +0000
+++ b/lisp/emacs-lisp/easymenu.el	Wed Aug 08 07:15:45 2007 +0000
@@ -539,7 +539,7 @@
     (easy-menu-do-add-item map item before)))
 
 (defun easy-menu-item-present-p (map path name)
-  "In submenu of MAP with path PATH, return non-nil iff item NAME is present.
+  "In submenu of MAP with path PATH, return non-nil if item NAME is present.
 MAP and PATH are defined as in `easy-menu-add-item'.
 NAME should be a string, the name of the element to be looked for."
   (easy-menu-return-item (easy-menu-get-map map path) name))
--- a/lisp/emacs-lisp/rx.el	Wed Aug 08 07:15:01 2007 +0000
+++ b/lisp/emacs-lisp/rx.el	Wed Aug 08 07:15:45 2007 +0000
@@ -554,7 +554,7 @@
 
 This function may return false negatives, but it will not
 return false positives.  It is nevertheless useful in
-situations where an efficiency shortcut can be taken iff a
+situations where an efficiency shortcut can be taken only if a
 regexp is atomic.  The function can be improved to detect
 more cases of atomic regexps.  Presently, this function
 detects the following categories of atomic regexp;
--- a/lisp/emacs-lisp/unsafep.el	Wed Aug 08 07:15:01 2007 +0000
+++ b/lisp/emacs-lisp/unsafep.el	Wed Aug 08 07:15:45 2007 +0000
@@ -212,7 +212,7 @@
 
 
 (defun unsafep-function (fun)
-  "Return nil iff FUN is a safe function.
+  "Return nil if FUN is a safe function.
 \(either a safe lambda or a symbol that names a safe function).  Otherwise
 result is a reason code."
   (cond