summaryrefslogtreecommitdiff
path: root/lisp/dired-aux.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-08-08 07:40:09 +0000
committerGlenn Morris <rgm@gnu.org>2007-08-08 07:40:09 +0000
commit4837b516ea56c6cc2b3ce823b04078b10b2defc6 (patch)
tree8d2cf5aab413be0a169520329f869601e2fed0bf /lisp/dired-aux.el
parent5453fa41122e3278a442f4fab855561e41f4034f (diff)
downloademacs-4837b516ea56c6cc2b3ce823b04078b10b2defc6.tar.gz
Replace `iff' in doc-strings and comments.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r--lisp/dired-aux.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index fd57c4b8885..4d9849cd534 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -2006,8 +2006,8 @@ of marked files. If KILL-ROOT is non-nil, kill DIRNAME as well."
(defun dired-tree-lessp (dir1 dir2)
;; Lexicographic order on file name components, like `ls -lR':
- ;; DIR1 < DIR2 iff DIR1 comes *before* DIR2 in an `ls -lR' listing,
- ;; i.e., iff DIR1 is a (grand)parent dir of DIR2,
+ ;; DIR1 < DIR2 if DIR1 comes *before* DIR2 in an `ls -lR' listing,
+ ;; i.e., if DIR1 is a (grand)parent dir of DIR2,
;; or DIR1 and DIR2 are in the same parentdir and their last
;; components are string-lessp.
;; Thus ("/usr/" "/usr/bin") and ("/usr/a/" "/usr/b/") are tree-lessp.