changeset 28513:1fec001e68c5

(CHARSET_TABLE_ENTRY): Fix comment -- argument is a C int, not a lisp integer.
author Ken Raeburn <raeburn@raeburn.org>
date Sat, 08 Apr 2000 19:35:24 +0000
parents 01292435daaf
children 8696fafd68ae
files src/charset.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/charset.h	Sat Apr 08 19:34:29 2000 +0000
+++ b/src/charset.h	Sat Apr 08 19:35:24 2000 +0000
@@ -266,7 +266,7 @@
 /* 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)]