]> git.eshelyaron.com Git - emacs.git/commitdiff
(Qcompletion_ignore_case): New Lisp_Object.
authorGlenn Morris <rgm@gnu.org>
Wed, 17 Oct 2007 01:30:17 +0000 (01:30 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 17 Oct 2007 01:30:17 +0000 (01:30 +0000)
(syms_of_minibuf): Add Qcompletion_ignore_case.

src/minibuf.c

index 0a1d737a7939e522df61ea99558b8c667ab268d1..bd07e2cdd365513aae1e65cdad6e20f66bb5c1ca 100644 (file)
@@ -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);