diff options
| author | Kenichi Handa | 2000-03-13 23:33:46 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-03-13 23:33:46 +0000 |
| commit | a735b7e1cff3f1a5bfa20b4388f5d3da41491a53 (patch) | |
| tree | eeab4d574d8b8d5e2e94d4c6416975f8489681e4 /src/ChangeLog | |
| parent | c1300911b4a9068a8223a339790df8ccf079c83c (diff) | |
| download | emacs-a735b7e1cff3f1a5bfa20b4388f5d3da41491a53.tar.gz emacs-a735b7e1cff3f1a5bfa20b4388f5d3da41491a53.zip | |
*** empty log message ***
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7e35baa308f..6d0f268fe65 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -150,6 +150,38 @@ | |||
| 150 | * xfns.c: Remove obsolete code in #if 0. | 150 | * xfns.c: Remove obsolete code in #if 0. |
| 151 | (Fx_focus_frame): New function. | 151 | (Fx_focus_frame): New function. |
| 152 | 152 | ||
| 153 | 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp> | ||
| 154 | |||
| 155 | * coding.c (coding_category_name): Add coding-category-utf-8, | ||
| 156 | coding-category-utf-16-be, coding-category-utf-16-le. | ||
| 157 | (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P, | ||
| 158 | UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P, | ||
| 159 | UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros. | ||
| 160 | (detect_coding_utf_8): New function. | ||
| 161 | (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P | ||
| 162 | UTF_16_LOW_SURROGATE_P): New macros. | ||
| 163 | (detect_coding_utf_16): New function | ||
| 164 | (detect_coding_mask): When priorities are specified, skip any | ||
| 165 | categories that have `nil' coding-system. Fix bug of returning | ||
| 166 | wrong mask when PRIORITIES is specified and detect_coding_XXX() | ||
| 167 | returns a mask not set in PRIORITIES. | ||
| 168 | (detect_eol_type_in_2_octet_form): New function. | ||
| 169 | (detect_eol): selects detect_eol_type_XXX to call according to | ||
| 170 | cooding->category_idx. | ||
| 171 | (detect_coding_system): Remove `nil' coding-system in the result. | ||
| 172 | (Fupdate_coding_systems_internal): Update all coding-categories. | ||
| 173 | |||
| 174 | * coding.h (CODING_CATEGORY_IDX_UTF_8, | ||
| 175 | CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New | ||
| 176 | macros. | ||
| 177 | (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY, | ||
| 178 | CODING_CATEGORY_IDX_MAX): Adjusted for the above macros. | ||
| 179 | CODING_CATEGORY_IDX_UTF_16_LE. | ||
| 180 | (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE, | ||
| 181 | CODING_CATEGORY_MASK_UTF_16_LE): New macros. | ||
| 182 | (CODING_CATEGORY_MASK_ANY): Include the above macros. | ||
| 183 | (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro. | ||
| 184 | |||
| 153 | 2000-03-07 Gerd Moellmann <gerd@gnu.org> | 185 | 2000-03-07 Gerd Moellmann <gerd@gnu.org> |
| 154 | 186 | ||
| 155 | * doc.c (Fdocumentation_property): If value is not a string, | 187 | * doc.c (Fdocumentation_property): If value is not a string, |