diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-09-24 01:04:27 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-09-24 01:04:27 +0000 |
commit | a489517b882ba3927eae7b6c33a80b052e94ba8c (patch) | |
tree | 7295cfd63a4bfe0a8eec8ccf55bf97566b4398cc /src/dired.c | |
parent | d93ec753516a2bc0482d380a96bd471db75b8586 (diff) | |
download | emacs-a489517b882ba3927eae7b6c33a80b052e94ba8c.tar.gz |
* dired.c (Fdirectory_files): Fix typo in docstring.
Diffstat (limited to 'src/dired.c')
-rw-r--r-- | src/dired.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c index b71f12ff846..2f0d7993a76 100644 --- a/src/dired.c +++ b/src/dired.c @@ -368,8 +368,8 @@ If FULL is non-nil, return absolute file names. Otherwise return names that are relative to the specified directory. If MATCH is non-nil, mention only file names that match the regexp MATCH. If NOSORT is non-nil, the list is not sorted--its order is unpredictable. - Otherwise, the list returned is sorted with `stringp-lessp'. - NOSORT is useful if you plan to sort the result yourself. */) + Otherwise, the list returned is sorted with `string-lessp'. + NOSORT is useful if you plan to sort the result yourself. */) (directory, full, match, nosort) Lisp_Object directory, full, match, nosort; { |