diff options
author | Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> | 1997-04-14 09:12:40 -0300 |
---|---|---|
committer | Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> | 1997-04-14 09:12:40 -0300 |
commit | 42049b42f1ec7ba3dfb8ffd5cdcfc8b2b95a008f (patch) | |
tree | 5540ce7d7f45e3bbd35642afa34c07f92bdcbbe4 | |
parent | a8cd072c76da0a9f11c86d3e44766ecf97a3f402 (diff) | |
download | lua-42049b42f1ec7ba3dfb8ffd5cdcfc8b2b95a008f.tar.gz lua-42049b42f1ec7ba3dfb8ffd5cdcfc8b2b95a008f.tar.bz2 lua-42049b42f1ec7ba3dfb8ffd5cdcfc8b2b95a008f.zip |
fix comment in VERSION
-rw-r--r-- | undump.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** undump.h | 2 | ** undump.h |
3 | ** definitions for lua decompiler | 3 | ** definitions for lua decompiler |
4 | ** $Id: undump.h,v 1.2 1996/03/11 21:59:41 lhf Exp lhf $ | 4 | ** $Id: undump.h,v 1.3 1996/11/14 11:44:34 lhf Exp lhf $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "func.h" | 7 | #include "func.h" |
@@ -15,7 +15,7 @@ | |||
15 | #define ID_VAR 'V' | 15 | #define ID_VAR 'V' |
16 | #define ID_STR 'S' | 16 | #define ID_STR 'S' |
17 | #define SIGNATURE "Lua" | 17 | #define SIGNATURE "Lua" |
18 | #define VERSION 0x25 /* 2.5 */ | 18 | #define VERSION 0x25 /* last format change was in 2.5 */ |
19 | #define TEST_WORD 0x1234 /* a word for testing byte ordering */ | 19 | #define TEST_WORD 0x1234 /* a word for testing byte ordering */ |
20 | #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ | 20 | #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ |
21 | 21 | ||