diff options
| author | Kenichi Handa | 1998-05-18 00:59:38 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-05-18 00:59:38 +0000 |
| commit | 62c6686f987dafc0873713b97eda0a342ff65b15 (patch) | |
| tree | 4111af503e5580c3cb893ad9443684633f9d7cde /src | |
| parent | 84fbb8a002784c64b76e73a3add7231b6ce3157b (diff) | |
| download | emacs-62c6686f987dafc0873713b97eda0a342ff65b15.tar.gz emacs-62c6686f987dafc0873713b97eda0a342ff65b15.zip | |
Change terms unify/unification to
translate/translation respectively throughtout the file.
(GET_TRANSLATION_TABLE): Name changed from UNIFICATION_ID_TABLE.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/charset.h b/src/charset.h index 9645db2a054..d76b24d5d51 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -791,7 +791,7 @@ extern int n_cmpchars; | |||
| 791 | 791 | ||
| 792 | extern void invalid_character P_ ((int)); | 792 | extern void invalid_character P_ ((int)); |
| 793 | 793 | ||
| 794 | extern int unify_char P_ ((Lisp_Object, int, int, int, int)); | 794 | extern int translate_char P_ ((Lisp_Object, int, int, int, int)); |
| 795 | extern int split_non_ascii_string P_ ((const unsigned char *, int, int *, | 795 | extern int split_non_ascii_string P_ ((const unsigned char *, int, int *, |
| 796 | unsigned char *, unsigned char *)); | 796 | unsigned char *, unsigned char *)); |
| 797 | extern int string_to_non_ascii_char P_ ((const unsigned char *, int, int *)); | 797 | extern int string_to_non_ascii_char P_ ((const unsigned char *, int, int *)); |
| @@ -803,9 +803,11 @@ extern int cmpchar_component P_ ((unsigned int, unsigned int)); | |||
| 803 | extern int find_charset_in_str P_ ((unsigned char *, int, int *, Lisp_Object)); | 803 | extern int find_charset_in_str P_ ((unsigned char *, int, int *, Lisp_Object)); |
| 804 | extern int strwidth P_ ((unsigned char *, int)); | 804 | extern int strwidth P_ ((unsigned char *, int)); |
| 805 | 805 | ||
| 806 | extern Lisp_Object Vcharacter_unification_table_vector; | 806 | extern Lisp_Object Vcharacter_translation_table_vector; |
| 807 | #define UNIFICATION_ID_TABLE(id) \ | 807 | |
| 808 | (XCONS(XVECTOR(Vcharacter_unification_table_vector)->contents[(id)])->cdr) | 808 | /* Return a character translation table of id number ID. */ |
| 809 | #define GET_TRANSLATION_TABLE(id) \ | ||
| 810 | (XCONS(XVECTOR(Vcharacter_translation_table_vector)->contents[(id)])->cdr) | ||
| 809 | 811 | ||
| 810 | /* Copy LEN bytes from FROM to TO. This macro should be used only | 812 | /* Copy LEN bytes from FROM to TO. This macro should be used only |
| 811 | when a caller knows that LEN is short and the obvious copy loop is | 813 | when a caller knows that LEN is short and the obvious copy loop is |