diff options
| author | Kenichi Handa | 1997-07-02 12:53:53 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-07-02 12:53:53 +0000 |
| commit | e8cafdc133e5fa9d6098f6b66005d625fd0fa883 (patch) | |
| tree | 9973b12ccd94da046479506fbcf04e78eaaedd45 /src/coding.h | |
| parent | b58fda2e9697324e53e281911ffac53005fed562 (diff) | |
| download | emacs-e8cafdc133e5fa9d6098f6b66005d625fd0fa883.tar.gz emacs-e8cafdc133e5fa9d6098f6b66005d625fd0fa883.zip | |
(struct coding_system): New members
character_unification_table_for_decode and
character_unification_table_for_encode.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/coding.h b/src/coding.h index b40a780d39a..00371e1fe63 100644 --- a/src/coding.h +++ b/src/coding.h | |||
| @@ -295,8 +295,9 @@ struct coding_system | |||
| 295 | additional conversion. */ | 295 | additional conversion. */ |
| 296 | Lisp_Object pre_write_conversion; | 296 | Lisp_Object pre_write_conversion; |
| 297 | 297 | ||
| 298 | /* Character unification table to look up, or nil. */ | 298 | /* Character unification tables to look up, or nil. */ |
| 299 | Lisp_Object character_unification_table; | 299 | Lisp_Object character_unification_table_for_decode; |
| 300 | Lisp_Object character_unification_table_for_encode; | ||
| 300 | 301 | ||
| 301 | /* Carryover yielded by decoding/encoding incomplete source. No | 302 | /* Carryover yielded by decoding/encoding incomplete source. No |
| 302 | coding-system yields more than 7-byte of carryover. This does | 303 | coding-system yields more than 7-byte of carryover. This does |