Mercurial > hg > xemacs-beta
diff src/events.h @ 5922:4b055de36bb9 cygwin
merging heads 2
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Fri, 27 Feb 2015 17:47:15 +0000 |
parents | a216b3c2b09e |
children |
line wrap: on
line diff
--- a/src/events.h Wed Apr 23 22:22:37 2014 +0100 +++ b/src/events.h Fri Feb 27 17:47:15 2015 +0000 @@ -72,6 +72,7 @@ /* Flags for create_io_streams_cb() FLAGS parameter */ #define STREAM_PTY_FLUSHING 0x0001 #define STREAM_NETWORK_CONNECTION 0x0002 +#define STREAM_USE_TLS 0x0004 extern struct event_stream *event_stream; @@ -1148,11 +1149,13 @@ translation loop). If this is nil, then the next-read event is the first that can begin a function key sequence. */ Lisp_Object first_mungeable_event[2]; - Ibyte *echo_buf; - - Bytecount echo_buf_length; /* size of echo_buf */ - Bytecount echo_buf_index; /* index into echo_buf + Lisp_Object echo_buf; + Bytecount echo_buf_fill_pointer; /* Fill pointer for echo_buf. * -1 before doing echoing for new cmd */ + Bytecount echo_buf_end; /* End of the text to be shown in + echo_buf. Can be after the fill + pointer, but usually identical to + it */ /* Self-insert-command is magic in that it doesn't always push an undo- boundary: up to 20 consecutive self-inserts can happen before an undo- boundary is pushed. This variable is that counter.