From d93264c67823a87a01f723f0618bbdf173d7415f Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 8 Dec 2008 14:44:23 +0000 Subject: [PATCH] (struct tty): New members termcap_term_buffer and termcap_strings_buffer. --- src/termchar.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/termchar.h b/src/termchar.h index 2bac6c68212..0e4d2eefdba 100644 --- a/src/termchar.h +++ b/src/termchar.h @@ -98,6 +98,15 @@ struct tty_display_info 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" */ -- 2.39.2