summaryrefslogtreecommitdiff
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-01-26 12:02:58 +0000
committerGerd Moellmann <gerd@gnu.org>2000-01-26 12:02:58 +0000
commit9e49c9901e45251a12d8248961856f2ced369729 (patch)
treea85a73b33fecb6b2cbb24658c42e8c30a94f5c39 /src/bytecode.c
parent4e6473c81edae87dd16137ee4622ee2275b1ea0a (diff)
(Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index d103d2f1177..084dfef6fb5 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -433,7 +433,7 @@ If the third argument is incorrect, Emacs may crash.")
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)