aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2007-10-17 01:30:38 +0000
committerGlenn Morris2007-10-17 01:30:38 +0000
commit9fa5c213cf7ad2429b4703c81ebdabee2aede406 (patch)
tree8ccd9c49cec1fbeac2cd885ed3479cd0fa5383ed /src
parentc7183fb83f1841cc3ddf4877dd1f027755153479 (diff)
downloademacs-9fa5c213cf7ad2429b4703c81ebdabee2aede406.tar.gz
emacs-9fa5c213cf7ad2429b4703c81ebdabee2aede406.zip
(Qcompletion_ignore_case): New Lisp_Object.
(syms_of_minibuf): Add Qcompletion_ignore_case.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 489c714fcb4..e7c2aec7b3f 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -118,6 +118,7 @@ Lisp_Object Vread_buffer_function;
118/* Nonzero means completion ignores case. */ 118/* Nonzero means completion ignores case. */
119 119
120int completion_ignore_case; 120int completion_ignore_case;
121Lisp_Object Qcompletion_ignore_case;
121 122
122/* List of regexps that should restrict possible completions. */ 123/* List of regexps that should restrict possible completions. */
123 124
@@ -2831,6 +2832,9 @@ syms_of_minibuf ()
2831 minibuf_save_list = Qnil; 2832 minibuf_save_list = Qnil;
2832 staticpro (&minibuf_save_list); 2833 staticpro (&minibuf_save_list);
2833 2834
2835 Qcompletion_ignore_case = intern ("completion-ignore-case");
2836 staticpro (&Qcompletion_ignore_case);
2837
2834 Qread_file_name_internal = intern ("read-file-name-internal"); 2838 Qread_file_name_internal = intern ("read-file-name-internal");
2835 staticpro (&Qread_file_name_internal); 2839 staticpro (&Qread_file_name_internal);
2836 2840