diff options
| author | Karl Heuer | 1995-02-24 02:26:46 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-02-24 02:26:46 +0000 |
| commit | 17f650d96d101dc3ef9c6c0be0f033b73f9ace79 (patch) | |
| tree | cb4c4dab9ed1f4484b8aed9287d7ab8c2cc9aecd /src | |
| parent | 6d1da0d1c1a0eb310136090a7a72fd6284691a68 (diff) | |
| download | emacs-17f650d96d101dc3ef9c6c0be0f033b73f9ace79.tar.gz emacs-17f650d96d101dc3ef9c6c0be0f033b73f9ace79.zip | |
(display_locked): Declare this var.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 8 |
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. */ |
| 537 | extern PERDISPLAY *get_perdisplay (); | 537 | extern 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. */ | ||
| 540 | extern PERDISPLAY *current_perdisplay; | 541 | extern 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. */ |
| 543 | extern PERDISPLAY *all_perdisplays; | 544 | extern 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. */ | ||
| 548 | extern int display_locked; | ||
| 544 | #else | 549 | #else |
| 545 | extern PERDISPLAY the_only_perdisplay; | 550 | extern 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 */ |