diff options
| author | Paul Eggert | 2022-03-19 12:35:04 -0700 |
|---|---|---|
| committer | Paul Eggert | 2022-03-19 12:48:54 -0700 |
| commit | c11b4758b7bd971fcbb824638a06f52c7768d268 (patch) | |
| tree | 5d606308ecbbb40e00975c3e3004066cf57e3dd9 /src/bytecode.c | |
| parent | 495d8519ca030de4367be14f703c44855c2186dd (diff) | |
| download | emacs-c11b4758b7bd971fcbb824638a06f52c7768d268.tar.gz emacs-c11b4758b7bd971fcbb824638a06f52c7768d268.zip | |
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.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
| 452 | } | 452 | } |
| 453 | 453 | ||
| 454 | /* Whether a stack pointer is valid in the current frame. */ | 454 | /* Whether a stack pointer is valid in the current frame. */ |
| 455 | INLINE bool | 455 | static bool |
| 456 | valid_sp (struct bc_thread_state *bc, Lisp_Object *sp) | 456 | valid_sp (struct bc_thread_state *bc, Lisp_Object *sp) |
| 457 | { | 457 | { |
| 458 | struct bc_frame *fp = bc->fp; | 458 | struct bc_frame *fp = bc->fp; |