diff options
| author | Kenichi Handa | 1997-05-19 03:55:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-05-19 03:55:24 +0000 |
| commit | d987e6cbf7c9217fbe3b599a0425fd2d227a77b7 (patch) | |
| tree | f6c168009cd1cb3775108d8189b2d0b2c4558b27 /src | |
| parent | 062277801541a2092c82264efbfaa81231df6273 (diff) | |
| download | emacs-d987e6cbf7c9217fbe3b599a0425fd2d227a77b7.tar.gz emacs-d987e6cbf7c9217fbe3b599a0425fd2d227a77b7.zip | |
Change the declaration o encoding
from `int' to `unsigned char'.
Diffstat (limited to 'src')
| -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 ac36f3484de..10c8f6ef0be 100644 --- a/src/fontset.h +++ b/src/fontset.h | |||
| @@ -71,7 +71,7 @@ struct font_info | |||
| 71 | whose default value is defined in lisp/fontset.el. Since there's | 71 | whose default value is defined in lisp/fontset.el. Since there's |
| 72 | no charset whose id is 1, we use encoding[1] to store the | 72 | no charset whose id is 1, we use encoding[1] to store the |
| 73 | encoding information decided by the font itself. */ | 73 | encoding information decided by the font itself. */ |
| 74 | int encoding[MAX_CHARSET + 1]; | 74 | unsigned char encoding[MAX_CHARSET + 1]; |
| 75 | 75 | ||
| 76 | /* The baseline position of a font is normally `ascent' value of the | 76 | /* The baseline position of a font is normally `ascent' value of the |
| 77 | font. However, there exists many fonts which don't set `ascent' | 77 | font. However, there exists many fonts which don't set `ascent' |