From: Chong Yidong Date: Mon, 8 Dec 2008 14:44:23 +0000 (+0000) Subject: (struct tty): New members termcap_term_buffer and X-Git-Tag: emacs-pretest-23.0.90~1226 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d93264c67823a87a01f723f0618bbdf173d7415f;p=emacs.git (struct tty): New members termcap_term_buffer and termcap_strings_buffer. --- 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" */