aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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