diff options
| author | Glenn Morris | 2007-08-08 07:17:12 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-08-08 07:17:12 +0000 |
| commit | ab2d877d4515f7bb1de1a5b59d24c3d76903a802 (patch) | |
| tree | b0db10d3fa0894617d6d3e2ac707e9f35a3005a4 | |
| parent | 314125ec3721de7081213968761f3bb60636bd04 (diff) | |
| download | emacs-ab2d877d4515f7bb1de1a5b59d24c3d76903a802.tar.gz emacs-ab2d877d4515f7bb1de1a5b59d24c3d76903a802.zip | |
Replace `iff' in doc-strings and comments.
| -rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/easymenu.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/rx.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/unsafep.el | 2 | ||||
| -rw-r--r-- | lisp/erc/ChangeLog | 4 |
5 files changed, 8 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 811dc699bd0..82a5cf0a75a 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el | |||
| @@ -564,7 +564,7 @@ | |||
| 564 | (cons fn args))))))) | 564 | (cons fn args))))))) |
| 565 | 565 | ||
| 566 | (defun byte-optimize-all-constp (list) | 566 | (defun byte-optimize-all-constp (list) |
| 567 | "Non-nil iff all elements of LIST satisfy `byte-compile-constp'." | 567 | "Non-nil if all elements of LIST satisfy `byte-compile-constp'." |
| 568 | (let ((constant t)) | 568 | (let ((constant t)) |
| 569 | (while (and list constant) | 569 | (while (and list constant) |
| 570 | (unless (byte-compile-constp (car list)) | 570 | (unless (byte-compile-constp (car list)) |
diff --git a/lisp/emacs-lisp/easymenu.el b/lisp/emacs-lisp/easymenu.el index 5d53a70531c..030e1bccbd4 100644 --- a/lisp/emacs-lisp/easymenu.el +++ b/lisp/emacs-lisp/easymenu.el | |||
| @@ -539,7 +539,7 @@ earlier by `easy-menu-define' or `easy-menu-create-menu'." | |||
| 539 | (easy-menu-do-add-item map item before))) | 539 | (easy-menu-do-add-item map item before))) |
| 540 | 540 | ||
| 541 | (defun easy-menu-item-present-p (map path name) | 541 | (defun easy-menu-item-present-p (map path name) |
| 542 | "In submenu of MAP with path PATH, return non-nil iff item NAME is present. | 542 | "In submenu of MAP with path PATH, return non-nil if item NAME is present. |
| 543 | MAP and PATH are defined as in `easy-menu-add-item'. | 543 | MAP and PATH are defined as in `easy-menu-add-item'. |
| 544 | NAME should be a string, the name of the element to be looked for." | 544 | NAME should be a string, the name of the element to be looked for." |
| 545 | (easy-menu-return-item (easy-menu-get-map map path) name)) | 545 | (easy-menu-return-item (easy-menu-get-map map path) name)) |
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index cf915c1b15d..45a1e9c8d10 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el | |||
| @@ -554,7 +554,7 @@ appended to R will apply to all of R. For example, \"a\" | |||
| 554 | 554 | ||
| 555 | This function may return false negatives, but it will not | 555 | This function may return false negatives, but it will not |
| 556 | return false positives. It is nevertheless useful in | 556 | return false positives. It is nevertheless useful in |
| 557 | situations where an efficiency shortcut can be taken iff a | 557 | situations where an efficiency shortcut can be taken only if a |
| 558 | regexp is atomic. The function can be improved to detect | 558 | regexp is atomic. The function can be improved to detect |
| 559 | more cases of atomic regexps. Presently, this function | 559 | more cases of atomic regexps. Presently, this function |
| 560 | detects the following categories of atomic regexp; | 560 | detects the following categories of atomic regexp; |
diff --git a/lisp/emacs-lisp/unsafep.el b/lisp/emacs-lisp/unsafep.el index bf52acef382..d7dd1f19300 100644 --- a/lisp/emacs-lisp/unsafep.el +++ b/lisp/emacs-lisp/unsafep.el | |||
| @@ -212,7 +212,7 @@ of symbols with local bindings." | |||
| 212 | 212 | ||
| 213 | 213 | ||
| 214 | (defun unsafep-function (fun) | 214 | (defun unsafep-function (fun) |
| 215 | "Return nil iff FUN is a safe function. | 215 | "Return nil if FUN is a safe function. |
| 216 | \(either a safe lambda or a symbol that names a safe function). Otherwise | 216 | \(either a safe lambda or a symbol that names a safe function). Otherwise |
| 217 | result is a reason code." | 217 | result is a reason code." |
| 218 | (cond | 218 | (cond |
diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index 9baafe61257..d72d472d69f 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-08-08 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * erc-log.el, erc.el: Replace `iff' in doc-strings and comments. | ||
| 4 | |||
| 1 | 2007-07-30 Michael Olson <mwolson@gnu.org> | 5 | 2007-07-30 Michael Olson <mwolson@gnu.org> |
| 2 | 6 | ||
| 3 | * erc-nicklist.el: Remove from the Emacs source tree. This file | 7 | * erc-nicklist.el: Remove from the Emacs source tree. This file |