diff options
| author | Gerd Moellmann | 2000-08-09 18:44:35 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-08-09 18:44:35 +0000 |
| commit | 8e7bd23112f207c424ee68faf1bcbabe3a0af693 (patch) | |
| tree | 71318eec4e0e9c06605eeaa6637b9080d3348646 | |
| parent | 69a7a14df4b6356fe7c0fe54a33e79428a5c2abc (diff) | |
| download | emacs-8e7bd23112f207c424ee68faf1bcbabe3a0af693.tar.gz emacs-8e7bd23112f207c424ee68faf1bcbabe3a0af693.zip | |
(input_pending): External declaration.
| -rw-r--r-- | src/ChangeLog | 13 | ||||
| -rw-r--r-- | src/lisp.h | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 53313fff5d5..7b169877aa9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -15,6 +15,19 @@ | |||
| 15 | 15 | ||
| 16 | 2000-08-09 Gerd Moellmann <gerd@gnu.org> | 16 | 2000-08-09 Gerd Moellmann <gerd@gnu.org> |
| 17 | 17 | ||
| 18 | * lisp.h (input_pending): External declaration. | ||
| 19 | |||
| 20 | * dispextern.h (Qredisplay_dont_pause): Declare extern. | ||
| 21 | |||
| 22 | * xdisp.c (echo_area_display): Display thoroughly if input is | ||
| 23 | pending. Bind redisplay-dont-pause to t during the redisplay. | ||
| 24 | in case input is pending. | ||
| 25 | |||
| 26 | * dispnew.c (Qredisplay_dont_pause): New variable. | ||
| 27 | (syms_of_display): Initialize and staticpro it. | ||
| 28 | (update_frame_1): Don't interrupt the display for pending input if | ||
| 29 | redisplay_dont_pause is set. | ||
| 30 | |||
| 18 | * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P. | 31 | * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P. |
| 19 | 32 | ||
| 20 | * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix. | 33 | * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix. |
diff --git a/src/lisp.h b/src/lisp.h index 94ee5b0bf4d..dd98e4288e9 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2548,6 +2548,7 @@ extern void syms_of_casetab P_ ((void)); | |||
| 2548 | 2548 | ||
| 2549 | extern Lisp_Object Qdisabled, QCfilter; | 2549 | extern Lisp_Object Qdisabled, QCfilter; |
| 2550 | extern Lisp_Object Vtty_erase_char, Vhelp_form, Vtop_level; | 2550 | extern Lisp_Object Vtty_erase_char, Vhelp_form, Vtop_level; |
| 2551 | extern int input_pending; | ||
| 2551 | EXFUN (Fdiscard_input, 0); | 2552 | EXFUN (Fdiscard_input, 0); |
| 2552 | EXFUN (Frecursive_edit, 0); | 2553 | EXFUN (Frecursive_edit, 0); |
| 2553 | EXFUN (Fcommand_execute, 4); | 2554 | EXFUN (Fcommand_execute, 4); |