changeset 79108:f197bd049c23

(Qcompletion_ignore_case): New Lisp_Object. (syms_of_minibuf): Add Qcompletion_ignore_case.
author Glenn Morris <rgm@gnu.org>
date Wed, 17 Oct 2007 01:30:17 +0000
parents cce707ee192e
children 78939f1449b7
files src/minibuf.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/minibuf.c	Wed Oct 17 01:29:32 2007 +0000
+++ b/src/minibuf.c	Wed Oct 17 01:30:17 2007 +0000
@@ -117,6 +117,7 @@
 /* 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 @@
   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);