aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-07-06 16:47:15 +0000
committerDave Love2002-07-06 16:47:15 +0000
commit7619dee9f10581b22a21a288558ee8af4ca7c997 (patch)
tree874b9f92843f6c643bda52c98112ace8ec4cb3c0 /src
parent139a6f13b4416a71e7145f0190ec067818ced3c5 (diff)
downloademacs-7619dee9f10581b22a21a288558ee8af4ca7c997.tar.gz
emacs-7619dee9f10581b22a21a288558ee8af4ca7c997.zip
Comments.
Diffstat (limited to 'src')
-rw-r--r--src/charset.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/charset.h b/src/charset.h
index 48b6b35c35e..4ab884ff264 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -103,9 +103,9 @@ enum charset_attr_index
103 get the corresponding code point of this charset. */ 103 get the corresponding code point of this charset. */
104 charset_superset, 104 charset_superset,
105 105
106 /* The value is a mapping vector or a file name that contains 106 /* The value is a mapping vector or a file name that contains the
107 mapping vector. This provide how characters in the charset 107 mapping. This defines how characters in the charset should be
108 should be unified with Unicode. The value of the member 108 unified with Unicode. The value of the member
109 `charset_deunifier' is created from this information. */ 109 `charset_deunifier' is created from this information. */
110 charset_unify_map, 110 charset_unify_map,
111 111
@@ -114,7 +114,7 @@ enum charset_attr_index
114 the corresponding Unicode character. */ 114 the corresponding Unicode character. */
115 charset_deunifier, 115 charset_deunifier,
116 116
117 /* The length of charset attribute vector. */ 117 /* The length of the charset attribute vector. */
118 charset_attr_max 118 charset_attr_max
119 }; 119 };
120 120
@@ -137,10 +137,10 @@ enum charset_method
137 CHARSET_METHOD_MAP. */ 137 CHARSET_METHOD_MAP. */
138 CHARSET_METHOD_MAP_DEFERRED, 138 CHARSET_METHOD_MAP_DEFERRED,
139 139
140 /* A charset of this method is a subset of the other charset. */ 140 /* A charset of this method is a subset of another charset. */
141 CHARSET_METHOD_SUBSET, 141 CHARSET_METHOD_SUBSET,
142 142
143 /* A charset of this method is a superset of the other charsets. */ 143 /* A charset of this method is a superset of other charsets. */
144 CHARSET_METHOD_SUPERSET 144 CHARSET_METHOD_SUPERSET
145 }; 145 };
146 146
@@ -226,7 +226,7 @@ struct charset
226 (0x10000..0x3FFFFF). Each bit corresponds to 4096-character 226 (0x10000..0x3FFFFF). Each bit corresponds to 4096-character
227 block. 227 block.
228 228
229 If a bit is 1, at least one character in the corresponds block is 229 If a bit is 1, at least one character in the corresponding block is
230 in this charset. */ 230 in this charset. */
231 unsigned char fast_map[190]; 231 unsigned char fast_map[190];
232 232