Mercurial > emacs
changeset 100275:79edd8112818
(struct tty): New members termcap_term_buffer and
termcap_strings_buffer.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 08 Dec 2008 14:44:23 +0000 |
parents | c431d4325972 |
children | 8f4457a692c5 |
files | src/termchar.h |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/termchar.h Mon Dec 08 14:43:45 2008 +0000 +++ b/src/termchar.h Mon Dec 08 14:44:23 2008 +0000 @@ -98,6 +98,15 @@ int mouse_face_hidden; #endif /* !MSDOS */ + /* Buffer used internally by termcap (see tgetent in the Termcap + manual). Only init_tty and delete_tty should change this. */ + char *termcap_term_buffer; + + /* Buffer storing terminal description strings (see tgetstr in the + Termcap manual). Only init_tty and delete_tty should change + this. */ + char *termcap_strings_buffer; + /* Strings, numbers and flags taken from the termcap entry. */ char *TS_ins_line; /* "al" */