aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorKarl Heuer1995-02-24 02:26:46 +0000
committerKarl Heuer1995-02-24 02:26:46 +0000
commit17f650d96d101dc3ef9c6c0be0f033b73f9ace79 (patch)
treecb4c4dab9ed1f4484b8aed9287d7ab8c2cc9aecd /src/lisp.h
parent6d1da0d1c1a0eb310136090a7a72fd6284691a68 (diff)
downloademacs-17f650d96d101dc3ef9c6c0be0f033b73f9ace79.tar.gz
emacs-17f650d96d101dc3ef9c6c0be0f033b73f9ace79.zip
(display_locked): Declare this var.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index ba2d3d8d415..a006dd33476 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -536,16 +536,22 @@ struct PERDISPLAY
536/* The perdisplay object associated with a particular frame. */ 536/* The perdisplay object associated with a particular frame. */
537extern PERDISPLAY *get_perdisplay (); 537extern PERDISPLAY *get_perdisplay ();
538 538
539/* The perdisplay object associated with the currently executing command. */ 539/* The perdisplay object associated with the command currently being read
540 or executed. */
540extern PERDISPLAY *current_perdisplay; 541extern PERDISPLAY *current_perdisplay;
541 542
542/* A list of all perdisplay objects, linked through next_perdisplay. */ 543/* A list of all perdisplay objects, linked through next_perdisplay. */
543extern PERDISPLAY *all_perdisplays; 544extern PERDISPLAY *all_perdisplays;
545
546/* Nonzero if current_perdisplay has exclusive use of the keyboard.
547 Usually this means that a command is being executed. */
548extern int display_locked;
544#else 549#else
545extern PERDISPLAY the_only_perdisplay; 550extern PERDISPLAY the_only_perdisplay;
546#define get_perdisplay(f) (&the_only_perdisplay) 551#define get_perdisplay(f) (&the_only_perdisplay)
547#define current_perdisplay (&the_only_perdisplay) 552#define current_perdisplay (&the_only_perdisplay)
548#define all_perdisplays (&the_only_perdisplay) 553#define all_perdisplays (&the_only_perdisplay)
554#define display_locked 1
549#endif 555#endif
550 556
551/* In a cons, the markbit of the car is the gc mark bit */ 557/* In a cons, the markbit of the car is the gc mark bit */