(Qcompletion_ignore_case): New Lisp_Object.
(syms_of_minibuf): Add Qcompletion_ignore_case.
This commit is contained in:
parent
930f57b46e
commit
b46d7a8abb
1 changed files with 4 additions and 0 deletions
|
|
@ -117,6 +117,7 @@ Lisp_Object Vread_buffer_function;
|
|||
/* Nonzero means completion ignores case. */
|
||||
|
||||
int completion_ignore_case;
|
||||
Lisp_Object Qcompletion_ignore_case;
|
||||
|
||||
/* List of regexps that should restrict possible completions. */
|
||||
|
||||
|
|
@ -2802,6 +2803,9 @@ syms_of_minibuf ()
|
|||
minibuf_save_list = Qnil;
|
||||
staticpro (&minibuf_save_list);
|
||||
|
||||
Qcompletion_ignore_case = intern ("completion-ignore-case");
|
||||
staticpro (&Qcompletion_ignore_case);
|
||||
|
||||
Qread_file_name_internal = intern ("read-file-name-internal");
|
||||
staticpro (&Qread_file_name_internal);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue