Move variables to inner loop, preparing for Mac port merge
* src/keyboard.c (command_loop_1): Move variables `cmd', `keybuf', and `i' to inner loop.
This commit is contained in:
parent
6ee327d8a1
commit
30f4a892ec
1 changed files with 4 additions and 3 deletions
|
@ -1234,9 +1234,6 @@ static void adjust_point_for_property (ptrdiff_t, bool);
|
|||
Lisp_Object
|
||||
command_loop_1 (void)
|
||||
{
|
||||
Lisp_Object cmd;
|
||||
Lisp_Object keybuf[30];
|
||||
int i;
|
||||
EMACS_INT prev_modiff = 0;
|
||||
struct buffer *prev_buffer = NULL;
|
||||
bool already_adjusted = 0;
|
||||
|
@ -1280,6 +1277,10 @@ command_loop_1 (void)
|
|||
|
||||
while (1)
|
||||
{
|
||||
Lisp_Object cmd;
|
||||
Lisp_Object keybuf[30];
|
||||
int i;
|
||||
|
||||
if (! FRAME_LIVE_P (XFRAME (selected_frame)))
|
||||
Fkill_emacs (Qnil);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue