diff options
| author | Juanma Barranquero | 2005-05-08 22:48:19 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-05-08 22:48:19 +0000 |
| commit | 2f60660a5eae9addccb472243bd88179b8f15d1e (patch) | |
| tree | e20c997067224946da512d6fcd5d4e32bb92ce7a /src | |
| parent | 6a350b06e2d2d3e092a6de644f742e0e52e6517b (diff) | |
| download | emacs-2f60660a5eae9addccb472243bd88179b8f15d1e.tar.gz emacs-2f60660a5eae9addccb472243bd88179b8f15d1e.zip | |
(Ffile_name_completion): Make argument name match its use in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/dired.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c63ccb5b0aa..f9c2608cf34 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-05-09 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * dired.c (Ffile_name_completion): Make argument name | ||
| 4 | match its use in docstring. | ||
| 5 | |||
| 1 | 2005-05-08 Luc Teirlinck <teirllm@auburn.edu> | 6 | 2005-05-08 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 7 | ||
| 3 | * eval.c (Fdefvaralias): Remove any pre-existing | 8 | * eval.c (Fdefvaralias): Remove any pre-existing |
diff --git a/src/dired.c b/src/dired.c index 87b48ba2d78..349154e1ac0 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -400,7 +400,7 @@ DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |||
| 400 | Returns the longest string | 400 | Returns the longest string |
| 401 | common to all file names in DIRECTORY that start with FILE. | 401 | common to all file names in DIRECTORY that start with FILE. |
| 402 | If there is only one and FILE matches it exactly, returns t. | 402 | If there is only one and FILE matches it exactly, returns t. |
| 403 | Returns nil if DIR contains no name starting with FILE. | 403 | Returns nil if DIRECTORY contains no name starting with FILE. |
| 404 | 404 | ||
| 405 | This function ignores some of the possible completions as | 405 | This function ignores some of the possible completions as |
| 406 | determined by the variable `completion-ignored-extensions', which see. */) | 406 | determined by the variable `completion-ignored-extensions', which see. */) |