summaryrefslogtreecommitdiff
path: root/src/coding.h
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>1998-05-22 09:45:34 +0000
committerKenichi Handa <handa@m17n.org>1998-05-22 09:45:34 +0000
commitf967223b11108117aadc260ad3cd7e92499e9d53 (patch)
tree81e41a0b483375caf5e0b52998c35cb631abacd9 /src/coding.h
parent537efd8df043427dfa36392683f95d1f4e89ea46 (diff)
downloademacs-f967223b11108117aadc260ad3cd7e92499e9d53.tar.gz
Change term "character translation table" to "translation table".
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coding.h b/src/coding.h
index 103f623b377..5fa42643ca0 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -375,8 +375,8 @@ struct coding_system
Lisp_Object pre_write_conversion;
/* Character translation tables to look up, or nil. */
- Lisp_Object character_translation_table_for_decode;
- Lisp_Object character_translation_table_for_encode;
+ Lisp_Object translation_table_for_decode;
+ Lisp_Object translation_table_for_encode;
};
#define CODING_REQUIRE_FLUSHING_MASK 1
@@ -530,8 +530,8 @@ extern Lisp_Object Qraw_text;
extern Lisp_Object Qbuffer_file_coding_system;
extern Lisp_Object Vcoding_category_list;
-extern Lisp_Object Qcharacter_translation_table;
-extern Lisp_Object Qcharacter_translation_table_id;
+extern Lisp_Object Qtranslation_table;
+extern Lisp_Object Qtranslation_table_id;
/* Mnemonic character to indicate each type of end-of-line. */
extern int eol_mnemonic_unix, eol_mnemonic_dos, eol_mnemonic_mac;