diff options
| author | Gerd Moellmann | 2000-01-26 12:02:58 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-01-26 12:02:58 +0000 |
| commit | 9e49c9901e45251a12d8248961856f2ced369729 (patch) | |
| tree | a85a73b33fecb6b2cbb24658c42e8c30a94f5c39 /src | |
| parent | 4e6473c81edae87dd16137ee4622ee2275b1ea0a (diff) | |
| download | emacs-9e49c9901e45251a12d8248961856f2ced369729.tar.gz emacs-9e49c9901e45251a12d8248961856f2ced369729.zip | |
(Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/bytecode.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f3a765f5661..e92e1dad809 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-01-26 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo. | ||
| 4 | |||
| 1 | 2000-01-25 Gerd Moellmann <gerd@gnu.org> | 5 | 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * charset.c (Fstring): If there is a multibyte char among | 7 | * charset.c (Fstring): If there is a multibyte char among |
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) |