diff options
author | Kenichi Handa <handa@m17n.org> | 2010-11-01 13:09:26 +0900 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2010-11-01 13:09:26 +0900 |
commit | b18fad6db4efeda274dcb36706a4146650570e6b (patch) | |
tree | 5534ead2ed9b34b021ac3e92c88cf70350f26351 /src/termhooks.h | |
parent | 0269bd906626243b117136d6ea9eb98d2947b9f8 (diff) | |
download | emacs-b18fad6db4efeda274dcb36706a4146650570e6b.tar.gz |
Handle glyphless characters on tty.
Diffstat (limited to 'src/termhooks.h')
-rw-r--r-- | src/termhooks.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index b9358896bae..e71c1159f0c 100644 --- a/src/termhooks.h +++ b/src/termhooks.h @@ -328,6 +328,11 @@ struct terminal /* Parameter alist of this terminal. */ Lisp_Object param_alist; + /* List of charsets supported by the terminal. It is set by + Fset_terminal_coding_system_internal along with + the member terminal_coding. */ + Lisp_Object charset_list; + /* All fields before `next_terminal' should be Lisp_Object and are traced by the GC. All fields afterwards are ignored by the GC. */ |