diff options
Diffstat (limited to 'lua.stx')
-rw-r--r-- | lua.stx | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | %{ | 1 | %{ |
2 | 2 | ||
3 | char *rcs_luastx = "$Id: lua.stx,v 3.6 1994/11/14 21:40:14 roberto Exp $"; | 3 | char *rcs_luastx = "$Id: lua.stx,v 3.7 1994/11/17 18:59:06 roberto Exp roberto $"; |
4 | 4 | ||
5 | #include <stdio.h> | 5 | #include <stdio.h> |
6 | #include <stdlib.h> | 6 | #include <stdlib.h> |
@@ -15,7 +15,7 @@ char *rcs_luastx = "$Id: lua.stx,v 3.6 1994/11/14 21:40:14 roberto Exp $"; | |||
15 | #include "lua.h" | 15 | #include "lua.h" |
16 | 16 | ||
17 | #ifndef LISTING | 17 | #ifndef LISTING |
18 | #define LISTING 1 | 18 | #define LISTING 0 |
19 | #endif | 19 | #endif |
20 | 20 | ||
21 | #ifndef CODE_BLOCK | 21 | #ifndef CODE_BLOCK |
@@ -866,6 +866,7 @@ static void PrintCode (Byte *code, Byte *end) | |||
866 | case SUBOP: printf ("%d SUBOP\n", (p++)-code); break; | 866 | case SUBOP: printf ("%d SUBOP\n", (p++)-code); break; |
867 | case MULTOP: printf ("%d MULTOP\n", (p++)-code); break; | 867 | case MULTOP: printf ("%d MULTOP\n", (p++)-code); break; |
868 | case DIVOP: printf ("%d DIVOP\n", (p++)-code); break; | 868 | case DIVOP: printf ("%d DIVOP\n", (p++)-code); break; |
869 | case POWOP: printf ("%d POWOP\n", (p++)-code); break; | ||
869 | case CONCOP: printf ("%d CONCOP\n", (p++)-code); break; | 870 | case CONCOP: printf ("%d CONCOP\n", (p++)-code); break; |
870 | case MINUSOP: printf ("%d MINUSOP\n", (p++)-code); break; | 871 | case MINUSOP: printf ("%d MINUSOP\n", (p++)-code); break; |
871 | case NOTOP: printf ("%d NOTOP\n", (p++)-code); break; | 872 | case NOTOP: printf ("%d NOTOP\n", (p++)-code); break; |