From: Andrew Innes Date: Thu, 18 Oct 2001 12:38:25 +0000 (+0000) Subject: (struct font_info) [WINDOWSNT]: Add codepage field. X-Git-Tag: emacs-21.1~31 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee344650a049734976f1764363273fb3fcb792de;p=emacs.git (struct font_info) [WINDOWSNT]: Add codepage field. --- diff --git a/src/fontset.h b/src/fontset.h index 9b90a7c5b81..17985b9a7b1 100644 --- a/src/fontset.h +++ b/src/fontset.h @@ -43,6 +43,11 @@ struct font_info /* Charset of characters displayed by the font. */ int charset; +#ifdef WINDOWSNT + /* Codepage of characters that will be displayed by the font. */ + int codepage; +#endif + /* Maximum bound width over all existing characters of the font. On X window, this is same as (font->max_bounds.width) */ int size;