Mercurial > emacs
diff src/bytecode.c @ 27438:5218aa03936e
(Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Wed, 26 Jan 2000 12:02:09 +0000 |
| parents | d94d421ca521 |
| children | ad65b21bc4cd |
line wrap: on
line diff
--- 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)
