emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/minibuf.c,v [EMACS_22_BASE]


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/src/minibuf.c,v [EMACS_22_BASE]
Date: Wed, 17 Oct 2007 01:30:18 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Branch:         EMACS_22_BASE
Changes by:     Glenn Morris <gm>       07/10/17 01:30:18

Index: minibuf.c
===================================================================
RCS file: /sources/emacs/emacs/src/minibuf.c,v
retrieving revision 1.329.2.1
retrieving revision 1.329.2.2
diff -u -b -r1.329.2.1 -r1.329.2.2
--- minibuf.c   25 Jul 2007 05:15:42 -0000      1.329.2.1
+++ minibuf.c   17 Oct 2007 01:30:17 -0000      1.329.2.2
@@ -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);
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]