diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
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.") | |||
| 433 | while (1) | 433 | while (1) |
| 434 | { | 434 | { |
| 435 | #ifdef BYTE_CODE_SAFE | 435 | #ifdef BYTE_CODE_SAFE |
| 436 | if (top > stacks) | 436 | if (top > stacke) |
| 437 | error ("Byte code stack overflow (byte compiler bug), pc %d, depth %d", | 437 | error ("Byte code stack overflow (byte compiler bug), pc %d, depth %d", |
| 438 | stack.pc - stack.byte_string_start, stacke - top); | 438 | stack.pc - stack.byte_string_start, stacke - top); |
| 439 | else if (top < stack.bottom - 1) | 439 | else if (top < stack.bottom - 1) |