aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-03-08 05:50:24 +0000
committerKarl Heuer1995-03-08 05:50:24 +0000
commit6c9f24d9013736268600192b264b0f3b0163f5cb (patch)
treed2a66caddfa2c0618465019aa8de9aaff821d4bb /src
parent93b036536228e060c897b694affd9d1d70510309 (diff)
downloademacs-6c9f24d9013736268600192b264b0f3b0163f5cb.tar.gz
emacs-6c9f24d9013736268600192b264b0f3b0163f5cb.zip
(struct PERDISPLAY): New member kbd_queue_has_data.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 7876a35ce49..f634982d6ae 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -521,8 +521,14 @@ struct PERDISPLAY
521 /* Last anonymous kbd macro defined. */ 521 /* Last anonymous kbd macro defined. */
522 Lisp_Object Vlast_kbd_macro; 522 Lisp_Object Vlast_kbd_macro;
523 523
524 /* Flag indicating that we should look at kbd_queue. This is not the
525 same as !NILP (kbd_queue), because if we've had to push back an
526 incomplete command, then this flag will be clear; we don't want to
527 try reading it again until another character arrives. */
528 int kbd_queue_has_data;
529
524 /* Placeholder for future vars that will be moved here. */ 530 /* Placeholder for future vars that will be moved here. */
525 Lisp_Object unused[19]; 531 Lisp_Object unused[18];
526 532
527 /* Nonzero means echo each character as typed. */ 533 /* Nonzero means echo each character as typed. */
528 int immediate_echo; 534 int immediate_echo;