diff options
| author | Luc Teirlinck | 2006-01-22 04:30:10 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-01-22 04:30:10 +0000 |
| commit | 407a52c4147ca30652c1d0a8874b58ace52f79f1 (patch) | |
| tree | 12be24e3a883b0fc001842a82b3ea740187b1e96 | |
| parent | 638590e8523c09948e04ba2dd44e40c308eb06d6 (diff) | |
| download | emacs-407a52c4147ca30652c1d0a8874b58ace52f79f1.tar.gz emacs-407a52c4147ca30652c1d0a8874b58ace52f79f1.zip | |
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
| -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 1f20ef8d10a..35a69780a3b 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -1036,11 +1036,11 @@ syms_of_dired () | |||
| 1036 | #endif /* VMS */ | 1036 | #endif /* VMS */ |
| 1037 | 1037 | ||
| 1038 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | 1038 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, |
| 1039 | doc: /* *Completion ignores filenames ending in any string in this list. | 1039 | doc: /* Completion ignores file names ending in any string in this list. |
| 1040 | Directories are ignored if they match any string in this list which | 1040 | It does not ignore them if all possible completions end in one of |
| 1041 | ends in a slash. | 1041 | these strings or when displaying a list of completions. |
| 1042 | This variable does not affect lists of possible completions, | 1042 | It ignores directory names if they match any string in this list which |
| 1043 | but does affect the commands that actually do completions. */); | 1043 | ends in a slash. */); |
| 1044 | Vcompletion_ignored_extensions = Qnil; | 1044 | Vcompletion_ignored_extensions = Qnil; |
| 1045 | } | 1045 | } |
| 1046 | 1046 | ||