aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-04-10 07:23:00 +0000
committerRichard M. Stallman1995-04-10 07:23:00 +0000
commit08f7d623f2c79c7152843f6ec47507e31b41d168 (patch)
tree639d80bdd8db829e841b3dcc054e75d6aeaa9c9b /src
parent652e2240620fcbda4b57002a0cf9ea1385288e34 (diff)
downloademacs-08f7d623f2c79c7152843f6ec47507e31b41d168.tar.gz
emacs-08f7d623f2c79c7152843f6ec47507e31b41d168.zip
Don't include keyboard.h.
(read_minibuf): Call single_kboard_state to switch to the single-kboard state.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c5
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