# HG changeset patch # User Chong Yidong # Date 1228747463 0 # Node ID 79edd8112818c168bc59481c630b8c8682d79c1b # Parent c431d432597260902ed713ea6de7eefefe8a5081 (struct tty): New members termcap_term_buffer and termcap_strings_buffer. diff -r c431d4325972 -r 79edd8112818 src/termchar.h --- 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" */