diff options
author | Kenichi Handa <handa@m17n.org> | 1997-05-19 03:33:50 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-05-19 03:33:50 +0000 |
commit | 757b7b0cea7275f2d3fa2688bf14a54ec47a5006 (patch) | |
tree | 5bf7dae3e4f277addfcfc63ae4e79dfb543d6d78 /src/fontset.h | |
parent | 02559f9c07fc0e4dd4a4e96a4b2a1bf53c8d8d22 (diff) | |
download | emacs-757b7b0cea7275f2d3fa2688bf14a54ec47a5006.tar.gz |
(struct font_info): Change the declaration o encoding
from `char' to `int'.
Diffstat (limited to 'src/fontset.h')
-rw-r--r-- | src/fontset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.h b/src/fontset.h index b68938e3a7d..ac36f3484de 100644 --- a/src/fontset.h +++ b/src/fontset.h @@ -71,7 +71,7 @@ struct font_info whose default value is defined in lisp/fontset.el. Since there's no charset whose id is 1, we use encoding[1] to store the encoding information decided by the font itself. */ - char encoding[MAX_CHARSET + 1]; + int encoding[MAX_CHARSET + 1]; /* The baseline position of a font is normally `ascent' value of the font. However, there exists many fonts which don't set `ascent' |