summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2006-01-22 04:30:10 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2006-01-22 04:30:10 +0000
commit407a52c4147ca30652c1d0a8874b58ace52f79f1 (patch)
tree12be24e3a883b0fc001842a82b3ea740187b1e96 /src
parent638590e8523c09948e04ba2dd44e40c308eb06d6 (diff)
downloademacs-407a52c4147ca30652c1d0a8874b58ace52f79f1.tar.gz
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/dired.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dired.c b/src/dired.c
index 1f20ef8d10a..35a69780a3b 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -1036,11 +1036,11 @@ syms_of_dired ()
#endif /* VMS */
DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
- doc: /* *Completion ignores filenames ending in any string in this list.
-Directories are ignored if they match any string in this list which
-ends in a slash.
-This variable does not affect lists of possible completions,
-but does affect the commands that actually do completions. */);
+ doc: /* Completion ignores file names ending in any string in this list.
+It does not ignore them if all possible completions end in one of
+these strings or when displaying a list of completions.
+It ignores directory names if they match any string in this list which
+ends in a slash. */);
Vcompletion_ignored_extensions = Qnil;
}