diff --git a/src/interpret.c b/src/interpret.c
index c9f0e77fdcadab8db145efba568a5900e09a3641..e0749c35277065b71ffe1faa06e1389c0b9cc5c1 100644
--- a/src/interpret.c
+++ b/src/interpret.c
@@ -4,7 +4,7 @@
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
 #include "global.h"
-RCSID("$Id: interpret.c,v 1.51 1997/10/14 05:35:12 hubbe Exp $");
+RCSID("$Id: interpret.c,v 1.52 1997/10/25 17:33:58 grubba Exp $");
 #include "interpret.h"
 #include "object.h"
 #include "program.h"
@@ -706,7 +706,7 @@ static void eval_instruction(unsigned char *pc)
       instr=GET_ARG();
       assign_svalue_no_free(sp++,fp->locals+instr);
       goto dec_local_and_pop;
-      fp->locals[instr].u.integer--;
+      /* fp->locals[instr].u.integer--; */
       break;
 
       CASE(F_DEC_LOCAL_AND_POP);