# HG changeset patch # User Gerd Moellmann # Date 948888129 0 # Node ID 5218aa03936ef8d6fcf5ab5cb0de14daca833937 # Parent 25b7a462bc4dde31987a2856b3dd9205fcc301cb (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo. diff -r 25b7a462bc4d -r 5218aa03936e src/bytecode.c --- a/src/bytecode.c Wed Jan 26 10:32:38 2000 +0000 +++ b/src/bytecode.c Wed Jan 26 12:02:09 2000 +0000 @@ -433,7 +433,7 @@ while (1) { #ifdef BYTE_CODE_SAFE - if (top > stacks) + if (top > stacke) error ("Byte code stack overflow (byte compiler bug), pc %d, depth %d", stack.pc - stack.byte_string_start, stacke - top); else if (top < stack.bottom - 1)