diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-31 08:33:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-31 08:33:38 +0000 |
commit | d663cfcc401cff63db0560ed377d48b33b1bbf0a (patch) | |
tree | c842bb2f9f7fade68187eac963f25c81f82827fc /src/termhooks.h | |
parent | 776e6a64119eb361bd12691ddddfc739af7a70bc (diff) | |
download | emacs-d663cfcc401cff63db0560ed377d48b33b1bbf0a.tar.gz |
(frame_up_to_date_hook): Declared.
Diffstat (limited to 'src/termhooks.h')
-rw-r--r-- | src/termhooks.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 65abf51dc1a..e20a8fea5ed 100644 --- a/src/termhooks.h +++ b/src/termhooks.h @@ -183,8 +183,12 @@ extern void (*judge_scroll_bars_hook)( /* FRAME_PTR *FRAME */ ); /* Input queue declarations and hooks. */ +/* Called to read input events. */ extern int (*read_socket_hook) (); +/* Called when a frame's display becomes entirely up to date. */ +extern int (*frame_up_to_date_hook) (); + /* Expedient hack: only provide the below definitions to files that are prepared to handle lispy things. XINT is defined iff lisp.h has been included before this file. */ |