From 315c0139fbe03bda13d8b287ac1e315fc053caf0 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 30 May 2002 00:26:21 +0000 Subject: [PATCH] (sturct define_charset_arg_index): New enums charset_arg_min_code and charset_arg_max_code. (struct charset): New member char_index_offset. --- src/charset.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/charset.h b/src/charset.h index 4a21d8e2d81..051dbcb7142 100644 --- a/src/charset.h +++ b/src/charset.h @@ -33,6 +33,8 @@ enum define_charset_arg_index charset_arg_name, charset_arg_dimension, charset_arg_code_space, + charset_arg_min_code, + charset_arg_max_code, charset_arg_iso_final, charset_arg_iso_revision, charset_arg_emacs_mule_id, @@ -180,6 +182,10 @@ struct charset /* Mininum and Maximum code points of the charset. */ unsigned min_code, max_code; + /* Offset value used by macros CODE_POINT_TO_INDEX and + INDEX_TO_CODE_POINT. . */ + unsigned char_index_offset; + /* Mininum and Maximum character codes of the charset. If the charset is compatible with ASCII, min_char is a minimum non-ASCII character of the charset. */ -- 2.39.5