From 9bee23fd0550e33b2a3f9c8d1b53506b59407e5c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 17 Nov 1994 17:09:46 -0200 Subject: listing did not list POWOP --- lua.stx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua.stx b/lua.stx index c1f54df0..a2e75b34 100644 --- a/lua.stx +++ b/lua.stx @@ -1,6 +1,6 @@ %{ -char *rcs_luastx = "$Id: lua.stx,v 3.6 1994/11/14 21:40:14 roberto Exp $"; +char *rcs_luastx = "$Id: lua.stx,v 3.7 1994/11/17 18:59:06 roberto Exp roberto $"; #include #include @@ -15,7 +15,7 @@ char *rcs_luastx = "$Id: lua.stx,v 3.6 1994/11/14 21:40:14 roberto Exp $"; #include "lua.h" #ifndef LISTING -#define LISTING 1 +#define LISTING 0 #endif #ifndef CODE_BLOCK @@ -866,6 +866,7 @@ static void PrintCode (Byte *code, Byte *end) case SUBOP: printf ("%d SUBOP\n", (p++)-code); break; case MULTOP: printf ("%d MULTOP\n", (p++)-code); break; case DIVOP: printf ("%d DIVOP\n", (p++)-code); break; + case POWOP: printf ("%d POWOP\n", (p++)-code); break; case CONCOP: printf ("%d CONCOP\n", (p++)-code); break; case MINUSOP: printf ("%d MINUSOP\n", (p++)-code); break; case NOTOP: printf ("%d NOTOP\n", (p++)-code); break; -- cgit v1.2.3-55-g6feb