mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
(Qcompletion_ignore_case): New Lisp_Object.
(syms_of_minibuf): Add Qcompletion_ignore_case.
This commit is contained in:
parent
c7183fb83f
commit
9fa5c213cf
1 changed files with 4 additions and 0 deletions
|
|
@ -118,6 +118,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. */
|
||||
|
||||
|
|
@ -2831,6 +2832,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
Add a link
Reference in a new issue