diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2000-04-08 19:35:24 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2000-04-08 19:35:24 +0000 |
commit | e0643dfbb8a9630806c4e841ff52e77054176833 (patch) | |
tree | 9278c53361a46e4e3e1addee1e6622344054c32b /src/charset.h | |
parent | 8629eac71f305a88d3944a5234053d44ce54f4e8 (diff) | |
download | emacs-e0643dfbb8a9630806c4e841ff52e77054176833.tar.gz |
(CHARSET_TABLE_ENTRY): Fix comment -- argument is a C int, not a lisp integer.
Diffstat (limited to 'src/charset.h')
-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; /* Macros to access various information of CHARSET in Vcharset_table. We provide these macros for efficiency. No range check of CHARSET. */ -/* Return entry of CHARSET (lisp integer) in Vcharset_table. */ +/* Return entry of CHARSET (C integer) in Vcharset_table. */ #define CHARSET_TABLE_ENTRY(charset) \ XCHAR_TABLE (Vcharset_table)->contents[((charset) == CHARSET_ASCII \ ? 0 : (charset) + 128)] |