# HG changeset patch # User Glenn Morris # Date 1192584638 0 # Node ID 8a1394029f98ae4d8f83f49470f1a57bc451b1ec # Parent bb808ca35bd91ce9f6aef6f9fbce643e8ba79eb5 (Qcompletion_ignore_case): New Lisp_Object. (syms_of_minibuf): Add Qcompletion_ignore_case. diff -r bb808ca35bd9 -r 8a1394029f98 src/minibuf.c --- a/src/minibuf.c Wed Oct 17 01:29:58 2007 +0000 +++ b/src/minibuf.c Wed Oct 17 01:30:38 2007 +0000 @@ -118,6 +118,7 @@ /* 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 @@ 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);