diff options
| author | Glenn Morris | 2007-10-17 01:30:17 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-10-17 01:30:17 +0000 |
| commit | b46d7a8abb481bd07370466dc77624c6142fd7c0 (patch) | |
| tree | 4b288b5baf5b7067a053bf4308ec2368603b4731 /src | |
| parent | 930f57b46e639926c205e0b807ccb5bf4619b0b7 (diff) | |
| download | emacs-b46d7a8abb481bd07370466dc77624c6142fd7c0.tar.gz emacs-b46d7a8abb481bd07370466dc77624c6142fd7c0.zip | |
(Qcompletion_ignore_case): New Lisp_Object.
(syms_of_minibuf): Add Qcompletion_ignore_case.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 0a1d737a793..bd07e2cdd36 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -117,6 +117,7 @@ Lisp_Object Vread_buffer_function; | |||
| 117 | /* Nonzero means completion ignores case. */ | 117 | /* Nonzero means completion ignores case. */ |
| 118 | 118 | ||
| 119 | int completion_ignore_case; | 119 | int completion_ignore_case; |
| 120 | Lisp_Object Qcompletion_ignore_case; | ||
| 120 | 121 | ||
| 121 | /* List of regexps that should restrict possible completions. */ | 122 | /* List of regexps that should restrict possible completions. */ |
| 122 | 123 | ||
| @@ -2802,6 +2803,9 @@ syms_of_minibuf () | |||
| 2802 | minibuf_save_list = Qnil; | 2803 | minibuf_save_list = Qnil; |
| 2803 | staticpro (&minibuf_save_list); | 2804 | staticpro (&minibuf_save_list); |
| 2804 | 2805 | ||
| 2806 | Qcompletion_ignore_case = intern ("completion-ignore-case"); | ||
| 2807 | staticpro (&Qcompletion_ignore_case); | ||
| 2808 | |||
| 2805 | Qread_file_name_internal = intern ("read-file-name-internal"); | 2809 | Qread_file_name_internal = intern ("read-file-name-internal"); |
| 2806 | staticpro (&Qread_file_name_internal); | 2810 | staticpro (&Qread_file_name_internal); |
| 2807 | 2811 | ||