1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

*** empty log message ***

This commit is contained in:
Kenichi Handa 2004-04-12 05:56:40 +00:00
parent b583ceadde
commit 33f91981f7
2 changed files with 17 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-04-12 Kenichi Handa <handa@m17n.org>
* character.h (LEADING_CODE_LATIN_1_MIN)
(LEADING_CODE_LATIN_1_MAX): Delete these macros.
2004-04-08 Kenichi Handa <handa@m17n.org>
* category.h: Sync to HEAD.

View file

@ -59,6 +59,8 @@ Lisp_Object Vauto_fill_chars;
Lisp_Object Qauto_fill_chars;
/* Char-table of information about which character to unify to which
Unicode character. */
Lisp_Object Vchar_unify_table;
/* A char-table. An element is non-nil iff the corresponding
@ -86,6 +88,9 @@ int unibyte_to_multibyte_table[256];
/* Store multibyte form of character C at P. If C has modifier bits,
handle them appropriately. */
int
char_string (c, p)
int c;
@ -167,6 +172,13 @@ char_string (c, p)
}
/* Return a character whose multibyte form is at P. Set LEN is not
NULL, it must be a pointer to integer. In that case, set *LEN to
the byte length of the multibyte form. If ADVANCED is not NULL, is
must be a pointer to unsigned char. In that case, set *ADVANCED to
the ending address (i.e. the starting address of the next
character) of the multibyte form. */
int
string_char (p, advanced, len)
const unsigned char *p;