aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dired.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/dired.c b/src/dired.c
index 97736673f5d..3486e49b566 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -397,8 +397,10 @@ Returns nil if DIRECTORY contains no name starting with FILE.
397If PREDICATE is non-nil, call PREDICATE with each possible 397If PREDICATE is non-nil, call PREDICATE with each possible
398completion (in absolute form) and ignore it if PREDICATE returns nil. 398completion (in absolute form) and ignore it if PREDICATE returns nil.
399 399
400This function ignores some of the possible completions as 400This function ignores some of the possible completions as determined
401determined by the variable `completion-ignored-extensions', which see. */) 401by the variables `completion-regexp-list' and
402`completion-ignored-extensions', which see. `completion-regexp-list'
403is matched against file and directory names relative to DIRECTORY. */)
402 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate) 404 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate)
403{ 405{
404 Lisp_Object handler; 406 Lisp_Object handler;
@@ -422,7 +424,12 @@ determined by the variable `completion-ignored-extensions', which see. */)
422DEFUN ("file-name-all-completions", Ffile_name_all_completions, 424DEFUN ("file-name-all-completions", Ffile_name_all_completions,
423 Sfile_name_all_completions, 2, 2, 0, 425 Sfile_name_all_completions, 2, 2, 0,
424 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY. 426 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
425These are all file names in directory DIRECTORY which begin with FILE. */) 427These are all file names in directory DIRECTORY which begin with FILE.
428
429This function ignores some of the possible completions as determined
430by the variables `completion-regexp-list' and
431`completion-ignored-extensions', which see. `completion-regexp-list'
432is matched against file and directory names relative to DIRECTORY. */)
426 (Lisp_Object file, Lisp_Object directory) 433 (Lisp_Object file, Lisp_Object directory)
427{ 434{
428 Lisp_Object handler; 435 Lisp_Object handler;