From 0be57b9b6d1a4ea8d41c9c9b9b434b4749ccbb27 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 7 May 2020 14:52:19 -0300 Subject: Details in comments --- lundump.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lundump.h') diff --git a/lundump.h b/lundump.h index 2df6923e..f3748a99 100644 --- a/lundump.h +++ b/lundump.h @@ -21,7 +21,7 @@ /* ** Encode major-minor version in one byte, one nibble for each */ -#define MYINT(s) (s[0]-'0') /* assume one-digit numbers */ +#define MYINT(s) (s[0]-'0') /* assume one-digit numerals */ #define LUAC_VERSION (MYINT(LUA_VERSION_MAJOR)*16+MYINT(LUA_VERSION_MINOR)) #define LUAC_FORMAT 0 /* this is the official format */ -- cgit v1.2.3-55-g6feb