diff options
Diffstat (limited to 'src/termhooks.h')
| -rw-r--r-- | src/termhooks.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 8cb1194dc07..3368c906a2d 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -320,6 +320,12 @@ struct terminal | |||
| 320 | EMACS_INT size; | 320 | EMACS_INT size; |
| 321 | struct Lisp_Vector *vec_next; | 321 | struct Lisp_Vector *vec_next; |
| 322 | 322 | ||
| 323 | /* Parameter alist of this terminal. */ | ||
| 324 | Lisp_Object param_alist; | ||
| 325 | |||
| 326 | /* All fields before `next_terminal' should be Lisp_Object and are traced | ||
| 327 | by the GC. All fields afterwards are ignored by the GC. */ | ||
| 328 | |||
| 323 | /* Chain of all terminal devices. */ | 329 | /* Chain of all terminal devices. */ |
| 324 | struct terminal *next_terminal; | 330 | struct terminal *next_terminal; |
| 325 | 331 | ||
| @@ -363,9 +369,6 @@ struct terminal | |||
| 363 | the function `set-keyboard-coding-system'. */ | 369 | the function `set-keyboard-coding-system'. */ |
| 364 | struct coding_system *keyboard_coding; | 370 | struct coding_system *keyboard_coding; |
| 365 | 371 | ||
| 366 | /* Parameter alist of this terminal. */ | ||
| 367 | Lisp_Object param_alist; | ||
| 368 | |||
| 369 | /* Terminal characteristics. */ | 372 | /* Terminal characteristics. */ |
| 370 | /* XXX Are these really used on non-termcap displays? */ | 373 | /* XXX Are these really used on non-termcap displays? */ |
| 371 | 374 | ||