summaryrefslogtreecommitdiff
path: root/src/termchar.h
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2008-12-08 14:44:23 +0000
committerChong Yidong <cyd@stupidchicken.com>2008-12-08 14:44:23 +0000
commitd93264c67823a87a01f723f0618bbdf173d7415f (patch)
tree9eed2a2bfd3acc026219ff1a07255a424c0249dc /src/termchar.h
parent567826bbb2315961b72cc5d586d08b336f5cdea1 (diff)
downloademacs-d93264c67823a87a01f723f0618bbdf173d7415f.tar.gz
(struct tty): New members termcap_term_buffer and
termcap_strings_buffer.
Diffstat (limited to 'src/termchar.h')
-rw-r--r--src/termchar.h9
1 files changed, 9 insertions, 0 deletions
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" */