From: tomo Date: Fri, 9 Jun 2000 08:37:11 +0000 (+0000) Subject: (Charc_dynarr): New type. X-Git-Tag: r21-2-34-utf-2000-0_16-1~58 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=a427521703d69ab8a90a1118e139da303f6d8024;p=chise%2Fxemacs-chise.git.1 (Charc_dynarr): New type. --- diff --git a/src/character.h b/src/character.h index 1468f16..41aff97 100644 --- a/src/character.h +++ b/src/character.h @@ -1,6 +1,5 @@ /* Header for character representation. - Copyright (C) 1999 Electrotechnical Laboratory, JAPAN. - Licensed to the Free Software Foundation. + Copyright (C) 1999,2000 MORIOKA Tomohiko This file is part of XEmacs. @@ -19,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 _XEMACS_CHARACTER_H #define _XEMACS_CHARACTER_H @@ -100,4 +97,10 @@ XCHAR_OR_CHAR_INT (Lisp_Object obj) x = wrong_type_argument (Qcharacterp, x); \ } while (0) + +typedef struct +{ + Dynarr_declare (Charc); +} Charc_dynarr; + #endif /* _XEMACS_CHARACTER_H */