diff options
| author | Dave Love | 2002-10-06 21:15:08 +0000 |
|---|---|---|
| committer | Dave Love | 2002-10-06 21:15:08 +0000 |
| commit | 7acf89e6381eb940ef3a405fa7714e2c07d7a6e9 (patch) | |
| tree | b9f1dc7675535db828af04cebf71de240173f12e /src | |
| parent | a17ea5713293928042e9164130a47ddb92f55504 (diff) | |
| download | emacs-7acf89e6381eb940ef3a405fa7714e2c07d7a6e9.tar.gz emacs-7acf89e6381eb940ef3a405fa7714e2c07d7a6e9.zip | |
(define_charset_internal): Rename `supprementary'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c index 4512ad1e78d..365a72f6480 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -1075,14 +1075,14 @@ usage: (define-charset-internal ...) */) | |||
| 1075 | static int | 1075 | static int |
| 1076 | define_charset_internal (name, dimension, code_space, min_code, max_code, | 1076 | define_charset_internal (name, dimension, code_space, min_code, max_code, |
| 1077 | iso_final, iso_revision, emacs_mule_id, | 1077 | iso_final, iso_revision, emacs_mule_id, |
| 1078 | ascii_compatible, supprementary, | 1078 | ascii_compatible, supplementary, |
| 1079 | code_offset) | 1079 | code_offset) |
| 1080 | Lisp_Object name; | 1080 | Lisp_Object name; |
| 1081 | int dimension; | 1081 | int dimension; |
| 1082 | unsigned char *code_space; | 1082 | unsigned char *code_space; |
| 1083 | unsigned min_code, max_code; | 1083 | unsigned min_code, max_code; |
| 1084 | int iso_final, iso_revision, emacs_mule_id; | 1084 | int iso_final, iso_revision, emacs_mule_id; |
| 1085 | int ascii_compatible, supprementary; | 1085 | int ascii_compatible, supplementary; |
| 1086 | int code_offset; | 1086 | int code_offset; |
| 1087 | { | 1087 | { |
| 1088 | Lisp_Object args[charset_arg_max]; | 1088 | Lisp_Object args[charset_arg_max]; |
| @@ -1104,7 +1104,7 @@ define_charset_internal (name, dimension, code_space, min_code, max_code, | |||
| 1104 | args[charset_arg_emacs_mule_id] | 1104 | args[charset_arg_emacs_mule_id] |
| 1105 | = (emacs_mule_id < 0 ? Qnil : make_number (emacs_mule_id)); | 1105 | = (emacs_mule_id < 0 ? Qnil : make_number (emacs_mule_id)); |
| 1106 | args[charset_arg_ascii_compatible_p] = ascii_compatible ? Qt : Qnil; | 1106 | args[charset_arg_ascii_compatible_p] = ascii_compatible ? Qt : Qnil; |
| 1107 | args[charset_arg_supplementary_p] = supprementary ? Qt : Qnil; | 1107 | args[charset_arg_supplementary_p] = supplementary ? Qt : Qnil; |
| 1108 | args[charset_arg_invalid_code] = Qnil; | 1108 | args[charset_arg_invalid_code] = Qnil; |
| 1109 | args[charset_arg_code_offset] = make_number (code_offset); | 1109 | args[charset_arg_code_offset] = make_number (code_offset); |
| 1110 | args[charset_arg_map] = Qnil; | 1110 | args[charset_arg_map] = Qnil; |