emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a43cfb1: BYTE_CODE_SAFE typo fix


From: Paul Eggert
Subject: [Emacs-diffs] master a43cfb1: BYTE_CODE_SAFE typo fix
Date: Sat, 24 Dec 2016 04:30:45 +0000 (UTC)

branch: master
commit a43cfb1ad55cad553d54798356c69e2496a3e504
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    BYTE_CODE_SAFE typo fix
    
    * src/bytecode.c (FETCH): Depend on the value of BYTE_CODE_SAFE,
    not on whether it is defined.
---
 src/bytecode.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bytecode.c b/src/bytecode.c
index 06a800b..5e0055f 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -328,7 +328,7 @@ relocate_byte_stack (struct byte_stack *stack)
 
 
 /* Fetch the next byte from the bytecode stream.  */
-#ifdef BYTE_CODE_SAFE
+#if BYTE_CODE_SAFE
 #define FETCH (eassert (stack.byte_string_start == SDATA (stack.byte_string)), 
*stack.pc++)
 #else
 #define FETCH *stack.pc++



reply via email to

[Prev in Thread] Current Thread [Next in Thread]