aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/eval.c b/src/eval.c
index 32cfda24d8c..a51d0c90831 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -2820,11 +2820,8 @@ Thus, (funcall \\='cons \\='x \\='y) returns (x . y).
2820usage: (funcall FUNCTION &rest ARGUMENTS) */) 2820usage: (funcall FUNCTION &rest ARGUMENTS) */)
2821 (ptrdiff_t nargs, Lisp_Object *args) 2821 (ptrdiff_t nargs, Lisp_Object *args)
2822{ 2822{
2823 /* Use 'volatile' here to cause optimizing compilers to keep a 2823 Lisp_Object fun, original_fun;
2824 reference on the stack to the function's bytecode object. See 2824 Lisp_Object funcar;
2825 Bug#33014. */
2826 Lisp_Object volatile fun;
2827 Lisp_Object original_fun, funcar;
2828 ptrdiff_t numargs = nargs - 1; 2825 ptrdiff_t numargs = nargs - 1;
2829 Lisp_Object val; 2826 Lisp_Object val;
2830 ptrdiff_t count; 2827 ptrdiff_t count;