diff options
| author | Ken Raeburn | 2000-04-08 19:35:24 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2000-04-08 19:35:24 +0000 |
| commit | a3f4e3d921836f69f5577983075b7e6231e7de9d (patch) | |
| tree | 6ba1e04a6a2f2184f808257fc008fcb2a8bc48b1 /src | |
| parent | 8000e212ef3cefdf190624c9607def66bda2bf8a (diff) | |
| download | emacs-a3f4e3d921836f69f5577983075b7e6231e7de9d.tar.gz emacs-a3f4e3d921836f69f5577983075b7e6231e7de9d.zip | |
(CHARSET_TABLE_ENTRY): Fix comment -- argument is a C int, not a lisp integer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h index d9257b8955a..c00bf161e7c 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -266,7 +266,7 @@ extern Lisp_Object Vcharset_table; | |||
| 266 | /* Macros to access various information of CHARSET in Vcharset_table. | 266 | /* Macros to access various information of CHARSET in Vcharset_table. |
| 267 | We provide these macros for efficiency. No range check of CHARSET. */ | 267 | We provide these macros for efficiency. No range check of CHARSET. */ |
| 268 | 268 | ||
| 269 | /* Return entry of CHARSET (lisp integer) in Vcharset_table. */ | 269 | /* Return entry of CHARSET (C integer) in Vcharset_table. */ |
| 270 | #define CHARSET_TABLE_ENTRY(charset) \ | 270 | #define CHARSET_TABLE_ENTRY(charset) \ |
| 271 | XCHAR_TABLE (Vcharset_table)->contents[((charset) == CHARSET_ASCII \ | 271 | XCHAR_TABLE (Vcharset_table)->contents[((charset) == CHARSET_ASCII \ |
| 272 | ? 0 : (charset) + 128)] | 272 | ? 0 : (charset) + 128)] |