diff options
| author | Glenn Morris | 2007-10-17 01:31:14 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-17 01:31:14 +0000 |
| commit | ecd3f8b27acb54cca9c3f395ec91c3822f02b82b (patch) | |
| tree | 7e3471c24d25b19f72c104d0297e956bdd009cea /src | |
| parent | 9fa5c213cf7ad2429b4703c81ebdabee2aede406 (diff) | |
| download | emacs-ecd3f8b27acb54cca9c3f395ec91c3822f02b82b.tar.gz emacs-ecd3f8b27acb54cca9c3f395ec91c3822f02b82b.zip | |
(Qcompletion_ignore_case): Change to external.
(syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dired.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/dired.c b/src/dired.c index 1fb5387268a..09c72f69fdf 100644 --- a/src/dired.c +++ b/src/dired.c | |||
| @@ -115,10 +115,10 @@ extern void filemodestring P_ ((struct stat *, char *)); | |||
| 115 | #endif | 115 | #endif |
| 116 | 116 | ||
| 117 | extern int completion_ignore_case; | 117 | extern int completion_ignore_case; |
| 118 | extern Lisp_Object Qcompletion_ignore_case; | ||
| 118 | extern Lisp_Object Vcompletion_regexp_list; | 119 | extern Lisp_Object Vcompletion_regexp_list; |
| 119 | 120 | ||
| 120 | Lisp_Object Vcompletion_ignored_extensions; | 121 | Lisp_Object Vcompletion_ignored_extensions; |
| 121 | Lisp_Object Qcompletion_ignore_case; | ||
| 122 | Lisp_Object Qdirectory_files; | 122 | Lisp_Object Qdirectory_files; |
| 123 | Lisp_Object Qdirectory_files_and_attributes; | 123 | Lisp_Object Qdirectory_files_and_attributes; |
| 124 | Lisp_Object Qfile_name_completion; | 124 | Lisp_Object Qfile_name_completion; |
| @@ -1077,11 +1077,6 @@ syms_of_dired () | |||
| 1077 | defsubr (&Sfile_attributes); | 1077 | defsubr (&Sfile_attributes); |
| 1078 | defsubr (&Sfile_attributes_lessp); | 1078 | defsubr (&Sfile_attributes_lessp); |
| 1079 | 1079 | ||
| 1080 | #ifdef VMS | ||
| 1081 | Qcompletion_ignore_case = intern ("completion-ignore-case"); | ||
| 1082 | staticpro (&Qcompletion_ignore_case); | ||
| 1083 | #endif /* VMS */ | ||
| 1084 | |||
| 1085 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | 1080 | DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, |
| 1086 | doc: /* Completion ignores file names ending in any string in this list. | 1081 | doc: /* Completion ignores file names ending in any string in this list. |
| 1087 | It does not ignore them if all possible completions end in one of | 1082 | It does not ignore them if all possible completions end in one of |