Fix error message about recursive use of minibuffer
* src/minibuf.c (read_minibuf): Fix formatting of an error message. Reported by martin rudalics <rudalics@gmx.at>.
This commit is contained in:
parent
f10409914d
commit
2902fb035a
1 changed files with 2 additions and 2 deletions
|
@ -414,8 +414,8 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt,
|
|||
if (!enable_recursive_minibuffers
|
||||
&& minibuf_level > 0)
|
||||
{
|
||||
Lisp_Object str = build_string ("Command attempted to use minibuffer"
|
||||
"while in minibuffer");
|
||||
Lisp_Object str
|
||||
= build_string ("Command attempted to use minibuffer while in minibuffer");
|
||||
if (EQ (selected_window, minibuf_window))
|
||||
Fsignal (Quser_error, (list1 (str)));
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue