From: Kenichi Handa Date: Thu, 30 May 2002 00:26:21 +0000 (+0000) Subject: (sturct define_charset_arg_index): New enums charset_arg_min_code and X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~724 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=315c0139fbe03bda13d8b287ac1e315fc053caf0;p=emacs.git (sturct define_charset_arg_index): New enums charset_arg_min_code and charset_arg_max_code. (struct charset): New member char_index_offset. --- 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. */