aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1998-05-18 00:59:38 +0000
committerKenichi Handa1998-05-18 00:59:38 +0000
commit62c6686f987dafc0873713b97eda0a342ff65b15 (patch)
tree4111af503e5580c3cb893ad9443684633f9d7cde /src
parent84fbb8a002784c64b76e73a3add7231b6ce3157b (diff)
downloademacs-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.h10
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
792extern void invalid_character P_ ((int)); 792extern void invalid_character P_ ((int));
793 793
794extern int unify_char P_ ((Lisp_Object, int, int, int, int)); 794extern int translate_char P_ ((Lisp_Object, int, int, int, int));
795extern int split_non_ascii_string P_ ((const unsigned char *, int, int *, 795extern int split_non_ascii_string P_ ((const unsigned char *, int, int *,
796 unsigned char *, unsigned char *)); 796 unsigned char *, unsigned char *));
797extern int string_to_non_ascii_char P_ ((const unsigned char *, int, int *)); 797extern 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));
803extern int find_charset_in_str P_ ((unsigned char *, int, int *, Lisp_Object)); 803extern int find_charset_in_str P_ ((unsigned char *, int, int *, Lisp_Object));
804extern int strwidth P_ ((unsigned char *, int)); 804extern int strwidth P_ ((unsigned char *, int));
805 805
806extern Lisp_Object Vcharacter_unification_table_vector; 806extern 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