diff options
| author | Glenn Morris | 2020-11-13 09:00:26 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-11-13 09:00:26 -0800 |
| commit | a32fd9f64d06ccd07a9beaf6d6f1283f7a80edac (patch) | |
| tree | f442201f09831daa1ef03c4cfd6ab7050ec7958c /src | |
| parent | 15035e7fc807cbc2693e3f7cdd818eb1aa282cd2 (diff) | |
| parent | a3d316bbb7b432e21def2bdcee58bf36ca73bd75 (diff) | |
| download | emacs-a32fd9f64d06ccd07a9beaf6d6f1283f7a80edac.tar.gz emacs-a32fd9f64d06ccd07a9beaf6d6f1283f7a80edac.zip | |
Merge from origin/emacs-27
a3d316bbb7 (origin/emacs-27) Update information about refcards
f43e9ad524 Avoid crashes in the daemon due to user interaction
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 8c19559b087..c4adca15365 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -728,7 +728,8 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt, | |||
| 728 | /* If cursor is on the minibuffer line, | 728 | /* If cursor is on the minibuffer line, |
| 729 | show the user we have exited by putting it in column 0. */ | 729 | show the user we have exited by putting it in column 0. */ |
| 730 | if (XWINDOW (minibuf_window)->cursor.vpos >= 0 | 730 | if (XWINDOW (minibuf_window)->cursor.vpos >= 0 |
| 731 | && !noninteractive) | 731 | && !noninteractive |
| 732 | && !FRAME_INITIAL_P (SELECTED_FRAME ())) | ||
| 732 | { | 733 | { |
| 733 | XWINDOW (minibuf_window)->cursor.hpos = 0; | 734 | XWINDOW (minibuf_window)->cursor.hpos = 0; |
| 734 | XWINDOW (minibuf_window)->cursor.x = 0; | 735 | XWINDOW (minibuf_window)->cursor.x = 0; |