diff options
Diffstat (limited to 'src/dired.c')
| -rw-r--r-- | src/dired.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dired.c b/src/dired.c index eca05cde0db..650600b278e 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -1037,11 +1037,11 @@ syms_of_dired () | |||
| 1037 | #endif /* VMS */ | 1037 | #endif /* VMS */ |
| 1038 | 1038 | ||
| 1039 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | 1039 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, |
| 1040 | doc: /* *Completion ignores filenames ending in any string in this list. | 1040 | doc: /* Completion ignores file names ending in any string in this list. |
| 1041 | Directories are ignored if they match any string in this list which | 1041 | It does not ignore them if all possible completions end in one of |
| 1042 | ends in a slash. | 1042 | these strings or when displaying a list of completions. |
| 1043 | This variable does not affect lists of possible completions, | 1043 | It ignores directory names if they match any string in this list which |
| 1044 | but does affect the commands that actually do completions. */); | 1044 | ends in a slash. */); |
| 1045 | Vcompletion_ignored_extensions = Qnil; | 1045 | Vcompletion_ignored_extensions = Qnil; |
| 1046 | } | 1046 | } |
| 1047 | 1047 | ||