diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 8ebdff12527..9d870ce3640 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -697,10 +697,6 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt, | |||
| 697 | else | 697 | else |
| 698 | histstring = Qnil; | 698 | histstring = Qnil; |
| 699 | 699 | ||
| 700 | /* If Lisp form desired instead of string, parse it. */ | ||
| 701 | if (expflag) | ||
| 702 | val = string_to_object (val, defalt); | ||
| 703 | |||
| 704 | /* The appropriate frame will get selected | 700 | /* The appropriate frame will get selected |
| 705 | in set-window-configuration. */ | 701 | in set-window-configuration. */ |
| 706 | unbind_to (count, Qnil); | 702 | unbind_to (count, Qnil); |
| @@ -711,6 +707,10 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt, | |||
| 711 | if (! (NILP (Vhistory_add_new_input) || NILP (histstring))) | 707 | if (! (NILP (Vhistory_add_new_input) || NILP (histstring))) |
| 712 | call2 (intern ("add-to-history"), histvar, histstring); | 708 | call2 (intern ("add-to-history"), histvar, histstring); |
| 713 | 709 | ||
| 710 | /* If Lisp form desired instead of string, parse it. */ | ||
| 711 | if (expflag) | ||
| 712 | val = string_to_object (val, defalt); | ||
| 713 | |||
| 714 | return val; | 714 | return val; |
| 715 | } | 715 | } |
| 716 | 716 | ||