]> git.eshelyaron.com Git - emacs.git/commitdiff
(CHARSET_TABLE_ENTRY): Fix comment -- argument is a C int, not a lisp integer.
authorKen Raeburn <raeburn@raeburn.org>
Sat, 8 Apr 2000 19:35:24 +0000 (19:35 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Sat, 8 Apr 2000 19:35:24 +0000 (19:35 +0000)
src/charset.h

index d9257b8955a3c2348be054bf69daee14bdcba8d5..c00bf161e7cc920aab5968d9d9cc9a20e03e7053 100644 (file)
@@ -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)]