diff options
| author | Paul Eggert | 2016-12-23 20:30:11 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-12-23 20:30:41 -0800 |
| commit | a43cfb1ad55cad553d54798356c69e2496a3e504 (patch) | |
| tree | 69bdaf9b6add8a1b22a63c9f265c1df34b475bb4 /src/bytecode.c | |
| parent | 078d2d37f2f6cf7478931810d099c2581ed5db29 (diff) | |
| download | emacs-a43cfb1ad55cad553d54798356c69e2496a3e504.tar.gz emacs-a43cfb1ad55cad553d54798356c69e2496a3e504.zip | |
BYTE_CODE_SAFE typo fix
* src/bytecode.c (FETCH): Depend on the value of BYTE_CODE_SAFE,
not on whether it is defined.
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 06a800bef49..5e0055f4ee4 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -328,7 +328,7 @@ relocate_byte_stack (struct byte_stack *stack) | |||
| 328 | 328 | ||
| 329 | 329 | ||
| 330 | /* Fetch the next byte from the bytecode stream. */ | 330 | /* Fetch the next byte from the bytecode stream. */ |
| 331 | #ifdef BYTE_CODE_SAFE | 331 | #if BYTE_CODE_SAFE |
| 332 | #define FETCH (eassert (stack.byte_string_start == SDATA (stack.byte_string)), *stack.pc++) | 332 | #define FETCH (eassert (stack.byte_string_start == SDATA (stack.byte_string)), *stack.pc++) |
| 333 | #else | 333 | #else |
| 334 | #define FETCH *stack.pc++ | 334 | #define FETCH *stack.pc++ |