Mercurial > emacs
changeset 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 | 25b7a462bc4d |
children | 04383325ea14 |
files | src/bytecode.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)