diff options
| author | Karl Heuer | 1994-09-16 22:18:10 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-09-16 22:18:10 +0000 |
| commit | 408e56e14d78fde35982626e06a85e7aa7fa8e3c (patch) | |
| tree | 1ce0261998193b75c5cda61dc16b342aa81c2289 /src | |
| parent | 1b50b4f279a168d3d174d4affc20f13e149d083d (diff) | |
| download | emacs-408e56e14d78fde35982626e06a85e7aa7fa8e3c.tar.gz emacs-408e56e14d78fde35982626e06a85e7aa7fa8e3c.zip | |
(Qcompletion_ignored_extensions): New symbol.
(syms_of_dired): Initialize it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dired.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dired.c b/src/dired.c index 55fab748de4..8800db7c279 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -96,6 +96,7 @@ extern int completion_ignore_case; | |||
| 96 | extern Lisp_Object Vcompletion_regexp_list; | 96 | extern Lisp_Object Vcompletion_regexp_list; |
| 97 | 97 | ||
| 98 | Lisp_Object Vcompletion_ignored_extensions; | 98 | Lisp_Object Vcompletion_ignored_extensions; |
| 99 | Lisp_Object Qcompletion_ignored_extensions; | ||
| 99 | Lisp_Object Qcompletion_ignore_case; | 100 | Lisp_Object Qcompletion_ignore_case; |
| 100 | Lisp_Object Qdirectory_files; | 101 | Lisp_Object Qdirectory_files; |
| 101 | Lisp_Object Qfile_name_completion; | 102 | Lisp_Object Qfile_name_completion; |
| @@ -684,6 +685,8 @@ syms_of_dired () | |||
| 684 | staticpro (&Qcompletion_ignore_case); | 685 | staticpro (&Qcompletion_ignore_case); |
| 685 | #endif /* VMS */ | 686 | #endif /* VMS */ |
| 686 | 687 | ||
| 688 | Qcompletion_ignored_extensions = intern ("completion-ignored-extensions"); | ||
| 689 | staticpro (&Qcompletion_ignored_extensions); | ||
| 687 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | 690 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, |
| 688 | "*Completion ignores filenames ending in any string in this list.\n\ | 691 | "*Completion ignores filenames ending in any string in this list.\n\ |
| 689 | This variable does not affect lists of possible completions,\n\ | 692 | This variable does not affect lists of possible completions,\n\ |