diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index e8f97a2df2a..84b73c302c6 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -26,7 +26,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 26 | #include "frame.h" | 26 | #include "frame.h" |
| 27 | #include "window.h" | 27 | #include "window.h" |
| 28 | #include "syntax.h" | 28 | #include "syntax.h" |
| 29 | #include "keyboard.h" | ||
| 30 | 29 | ||
| 31 | #define min(a, b) ((a) < (b) ? (a) : (b)) | 30 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
| 32 | 31 | ||
| @@ -134,9 +133,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos) | |||
| 134 | Lisp_Object mini_frame; | 133 | Lisp_Object mini_frame; |
| 135 | struct gcpro gcpro1, gcpro2, gcpro3; | 134 | struct gcpro gcpro1, gcpro2, gcpro3; |
| 136 | 135 | ||
| 137 | #ifdef MULTI_KBOARD | 136 | single_kboard_state (); |
| 138 | kboard_locked = 1; | ||
| 139 | #endif | ||
| 140 | 137 | ||
| 141 | val = Qnil; | 138 | val = Qnil; |
| 142 | /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we | 139 | /* Don't need to protect PROMPT, HISTVAR, and HISTPOS because we |