aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index e7df7bd0153..76529bf86e6 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -2116,16 +2116,17 @@ a repetition of this command will exit. */)
2116 () 2116 ()
2117{ 2117{
2118 register int i; 2118 register int i;
2119 Lisp_Object val; 2119 Lisp_Object val, tem;
2120 2120
2121 /* Allow user to specify null string */ 2121 /* Allow user to specify null string */
2122 if (XINT (Fminibuffer_prompt_end ()) == ZV) 2122 if (XINT (Fminibuffer_prompt_end ()) == ZV)
2123 goto exit; 2123 goto exit;
2124 2124
2125 val = Fminibuffer_contents (); 2125 val = Fminibuffer_contents ();
2126 if (!NILP (Ftest_completion (val, 2126 tem = Ftest_completion (val,
2127 Vminibuffer_completion_table, 2127 Vminibuffer_completion_table,
2128 Vminibuffer_completion_predicate))) 2128 Vminibuffer_completion_predicate);
2129 if (!NILP (tem))
2129 { 2130 {
2130 if (completion_ignore_case) 2131 if (completion_ignore_case)
2131 { /* Fixup case of the field, if necessary. */ 2132 { /* Fixup case of the field, if necessary. */