aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2005-05-08 22:48:19 +0000
committerJuanma Barranquero2005-05-08 22:48:19 +0000
commit2f60660a5eae9addccb472243bd88179b8f15d1e (patch)
treee20c997067224946da512d6fcd5d4e32bb92ce7a /src
parent6a350b06e2d2d3e092a6de644f742e0e52e6517b (diff)
downloademacs-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/ChangeLog5
-rw-r--r--src/dired.c2
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 @@
12005-05-09 Juanma Barranquero <lekktu@gmail.com>
2
3 * dired.c (Ffile_name_completion): Make argument name
4 match its use in docstring.
5
12005-05-08 Luc Teirlinck <teirllm@auburn.edu> 62005-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,
400Returns the longest string 400Returns the longest string
401common to all file names in DIRECTORY that start with FILE. 401common to all file names in DIRECTORY that start with FILE.
402If there is only one and FILE matches it exactly, returns t. 402If there is only one and FILE matches it exactly, returns t.
403Returns nil if DIR contains no name starting with FILE. 403Returns nil if DIRECTORY contains no name starting with FILE.
404 404
405This function ignores some of the possible completions as 405This function ignores some of the possible completions as
406determined by the variable `completion-ignored-extensions', which see. */) 406determined by the variable `completion-ignored-extensions', which see. */)