aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index a7be8e26f27..5a62c913a40 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -425,8 +425,8 @@ If the third argument is incorrect, Emacs may crash. */)
425#ifdef BYTE_CODE_SAFE 425#ifdef BYTE_CODE_SAFE
426 int const_length = XVECTOR (vector)->size; 426 int const_length = XVECTOR (vector)->size;
427 Lisp_Object *stacke; 427 Lisp_Object *stacke;
428#endif
429 int bytestr_length; 428 int bytestr_length;
429#endif
430 struct byte_stack stack; 430 struct byte_stack stack;
431 Lisp_Object *top; 431 Lisp_Object *top;
432 Lisp_Object result; 432 Lisp_Object result;
@@ -453,7 +453,9 @@ If the third argument is incorrect, Emacs may crash. */)
453 convert them back to the originally intended unibyte form. */ 453 convert them back to the originally intended unibyte form. */
454 bytestr = Fstring_as_unibyte (bytestr); 454 bytestr = Fstring_as_unibyte (bytestr);
455 455
456#ifdef BYTE_CODE_SAFE
456 bytestr_length = SBYTES (bytestr); 457 bytestr_length = SBYTES (bytestr);
458#endif
457 vectorp = XVECTOR (vector)->contents; 459 vectorp = XVECTOR (vector)->contents;
458 460
459 stack.byte_string = bytestr; 461 stack.byte_string = bytestr;