aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 523d56bc97b..49369de33e9 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -536,7 +536,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
536 stack.byte_string = bytestr; 536 stack.byte_string = bytestr;
537 stack.pc = stack.byte_string_start = SDATA (bytestr); 537 stack.pc = stack.byte_string_start = SDATA (bytestr);
538 stack.constants = vector; 538 stack.constants = vector;
539 if (MAX_ALLOCA / sizeof (Lisp_Object) <= XFASTINT (maxdepth)) 539 if (MAX_ALLOCA / word_size <= XFASTINT (maxdepth))
540 memory_full (SIZE_MAX); 540 memory_full (SIZE_MAX);
541 top = alloca ((XFASTINT (maxdepth) + 1) * sizeof *top); 541 top = alloca ((XFASTINT (maxdepth) + 1) * sizeof *top);
542#if BYTE_MAINTAIN_TOP 542#if BYTE_MAINTAIN_TOP