diff options
| author | Chong Yidong | 2008-12-08 14:44:23 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-12-08 14:44:23 +0000 |
| commit | d93264c67823a87a01f723f0618bbdf173d7415f (patch) | |
| tree | 9eed2a2bfd3acc026219ff1a07255a424c0249dc /src | |
| parent | 567826bbb2315961b72cc5d586d08b336f5cdea1 (diff) | |
| download | emacs-d93264c67823a87a01f723f0618bbdf173d7415f.tar.gz emacs-d93264c67823a87a01f723f0618bbdf173d7415f.zip | |
(struct tty): New members termcap_term_buffer and
termcap_strings_buffer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/termchar.h | 9 |
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 | |||
| 98 | int mouse_face_hidden; | 98 | int mouse_face_hidden; |
| 99 | #endif /* !MSDOS */ | 99 | #endif /* !MSDOS */ |
| 100 | 100 | ||
| 101 | /* Buffer used internally by termcap (see tgetent in the Termcap | ||
| 102 | manual). Only init_tty and delete_tty should change this. */ | ||
| 103 | char *termcap_term_buffer; | ||
| 104 | |||
| 105 | /* Buffer storing terminal description strings (see tgetstr in the | ||
| 106 | Termcap manual). Only init_tty and delete_tty should change | ||
| 107 | this. */ | ||
| 108 | char *termcap_strings_buffer; | ||
| 109 | |||
| 101 | /* Strings, numbers and flags taken from the termcap entry. */ | 110 | /* Strings, numbers and flags taken from the termcap entry. */ |
| 102 | 111 | ||
| 103 | char *TS_ins_line; /* "al" */ | 112 | char *TS_ins_line; /* "al" */ |