]> git.eshelyaron.com Git - emacs.git/commitdiff
BYTE_CODE_SAFE typo fix
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 24 Dec 2016 04:30:11 +0000 (20:30 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 24 Dec 2016 04:30:41 +0000 (20:30 -0800)
* src/bytecode.c (FETCH): Depend on the value of BYTE_CODE_SAFE,
not on whether it is defined.

src/bytecode.c

index 06a800bef4980a4cd7d5b53a288f19a554ee86e6..5e0055f4ee4363d17756cb00ca0d66a4275fbaed 100644 (file)
@@ -328,7 +328,7 @@ relocate_byte_stack (struct byte_stack *stack)
 
 \f
 /* 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++