aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorKenichi Handa1998-05-18 00:59:38 +0000
committerKenichi Handa1998-05-18 00:59:38 +0000
commitab45712c8f5242771a1adac67979ba7ebf663990 (patch)
tree3da431bd4c8f9d7d9914d76644b93ba5ddeb5ea9 /src/coding.h
parent44893c8f3a0286aa06f0c4f7a5e9036da60d1683 (diff)
downloademacs-ab45712c8f5242771a1adac67979ba7ebf663990.tar.gz
emacs-ab45712c8f5242771a1adac67979ba7ebf663990.zip
Change terms unify/unification to
translate/translation respectively throughtout the file.
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/coding.h b/src/coding.h
index f5250ce4e9c..103f623b377 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -374,9 +374,9 @@ struct coding_system
374 additional conversion, or nil. */ 374 additional conversion, or nil. */
375 Lisp_Object pre_write_conversion; 375 Lisp_Object pre_write_conversion;
376 376
377 /* Character unification tables to look up, or nil. */ 377 /* Character translation tables to look up, or nil. */
378 Lisp_Object character_unification_table_for_decode; 378 Lisp_Object character_translation_table_for_decode;
379 Lisp_Object character_unification_table_for_encode; 379 Lisp_Object character_translation_table_for_encode;
380}; 380};
381 381
382#define CODING_REQUIRE_FLUSHING_MASK 1 382#define CODING_REQUIRE_FLUSHING_MASK 1
@@ -530,6 +530,9 @@ extern Lisp_Object Qraw_text;
530extern Lisp_Object Qbuffer_file_coding_system; 530extern Lisp_Object Qbuffer_file_coding_system;
531extern Lisp_Object Vcoding_category_list; 531extern Lisp_Object Vcoding_category_list;
532 532
533extern Lisp_Object Qcharacter_translation_table;
534extern Lisp_Object Qcharacter_translation_table_id;
535
533/* Mnemonic character to indicate each type of end-of-line. */ 536/* Mnemonic character to indicate each type of end-of-line. */
534extern int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac; 537extern int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac;
535/* Mnemonic character to indicate type of end-of-line is not yet decided. */ 538/* Mnemonic character to indicate type of end-of-line is not yet decided. */