From: Paul Eggert Date: Sat, 19 Mar 2022 19:35:04 +0000 (-0700) Subject: valid_sp inline fix X-Git-Tag: emacs-29.0.90~1931^2~1038^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c11b4758b7bd971fcbb824638a06f52c7768d268;p=emacs.git valid_sp inline fix * src/bytecode.c (valid_sp): static, not INLINE, as INLINE should be used only in headers and between INLINE_HEADER_BEGIN and INLINE_HEADER_END. No need for ‘inline’ here. --- diff --git a/src/bytecode.c b/src/bytecode.c index ed1f6ca4a85..62464986160 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -452,7 +452,7 @@ DEFUN ("internal-stack-stats", Finternal_stack_stats, Sinternal_stack_stats, } /* Whether a stack pointer is valid in the current frame. */ -INLINE bool +static bool valid_sp (struct bc_thread_state *bc, Lisp_Object *sp) { struct bc_frame *fp = bc->fp;