Fixed my English fixes.

This commit is contained in:
Bruce Evans 1998-11-29 11:34:30 +00:00
parent ad04e6130e
commit 1b4db9d1fd
2 changed files with 3 additions and 2 deletions

View File

@ -55,7 +55,8 @@ static int find_compare __P((const FTSENT **s1, const FTSENT **s2));
/*
* find_compare --
* tell fts_open() how to order the traversal of the hierarchy.
* This variant gives lexicographical order in each directory.
* This variant gives lexicographical order, i.e., alphabetical
* order within each directory.
*/
static int
find_compare(s1, s2)

View File

@ -65,7 +65,7 @@ int ftsoptions; /* options for the ftsopen(3) call */
int isdeprecated; /* using deprecated syntax */
int isdepth; /* do directories on post-order visit */
int isoutput; /* user specified output operator */
int issort; /* do directories in lexicographical order */
int issort; /* do hierarchies in lexicographical order */
int isxargs; /* don't permit xargs delimiting chars */
static void usage __P((void));