]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix punctuation glitches in file-tree-walk docstring.
authorEric S. Raymond <esr@thyrsus.com>
Wed, 3 Dec 2014 23:26:34 +0000 (18:26 -0500)
committerEric S. Raymond <esr@thyrsus.com>
Wed, 3 Dec 2014 23:26:34 +0000 (18:26 -0500)
* files.el (file-tree-walk): Fix docstring.

lisp/ChangeLog
lisp/files.el

index 2309fc57e799c294d0ea55a2831da4c99faf91c0..2ff0a2d8d1673554aee804840f7911125beaefa9 100644 (file)
@@ -1,3 +1,7 @@
+2014-12-03  Eric S. Raymond  <esr@snark.thyrsus.com>
+
+       * files.el (file-tree-walk): Fix docstring.
+
 2014-12-03  Karl Fogel  <kfogel@red-bean.com>
 
        Fix bug whereby saving files hung in VC hook.
index 720a633761a354cb9cb9998eebb910a263f01241..740a00a41e3c2ca51c151be6fa8f41bbf5ce7c40 100644 (file)
@@ -730,11 +730,11 @@ The path separator is colon in GNU and GNU-like systems."
        (error "No such directory found via CDPATH environment variable"))))
 
 (defun file-tree-walk (dir action &rest args)
-  "Walk DIR executing ACTION.  Each call gets as arguments DIR, a file path,
-and optional ARGS. The ACTION is applied to each subdirectory
-before descending into it, and if nil is returned at that point
-the descent will be prevented.  Directory entries are sorted with
-string-lessp"
+  "Walk DIR executing ACTION on each path, with ARGS as additional arguments.
+Each call gets as arguments DIR, a file path, and optional ARGS.
+The ACTION is applied to each subdirectory before descending into
+it, and if nil is returned at that point the descent will be
+prevented.  Directory entries are sorted with string-lessp."
   (cond ((file-directory-p dir)
         (or (char-equal ?/ (aref dir (1- (length dir))))
             (setq dir (file-name-as-directory dir)))