Mercurial > emacs
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 27437:25b7a462bc4d | 27438:5218aa03936e |
|---|---|
| 431 #endif | 431 #endif |
| 432 | 432 |
| 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) |
| 440 error ("Byte code stack underflow (byte compiler bug), pc %d", | 440 error ("Byte code stack underflow (byte compiler bug), pc %d", |
| 441 stack.pc - stack.byte_string_start); | 441 stack.pc - stack.byte_string_start); |
