From: tomo Date: Fri, 9 Jun 2000 08:35:50 +0000 (+0000) Subject: (structure Charc): New structure; define new type `Charc'. X-Git-Tag: r21-2-34-utf-2000-0_16-1~59 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0ad17a1fa11632d97cb655dbbdf9cde7b69ab69a;p=chise%2Fxemacs-chise.git.1 (structure Charc): New structure; define new type `Charc'. --- diff --git a/src/char-ucs.h b/src/char-ucs.h index 8d6688e..b27bbd2 100644 --- a/src/char-ucs.h +++ b/src/char-ucs.h @@ -18,8 +18,6 @@ along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* Rewritten by MORIOKA Tomohiko . */ - #ifndef INCLUDED_char_ucs_h_ #define INCLUDED_char_ucs_h_ @@ -651,6 +649,13 @@ CHAR_CHARSET (Emchar ch) #define CHAR_CHARSET_ID(c) (XCHARSET_ID(CHAR_CHARSET(c))) #define CHAR_COLUMNS(c) (CHARSET_COLUMNS(XCHARSET(CHAR_CHARSET(c)))) + +typedef struct Charc +{ + Lisp_Object charset; + int code_point; +} Charc; + /************************************************************************/ /* Exported functions */