[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Lisp-friendly backtraces [was: Lispy backtraces]
From: |
Eli Zaretskii |
Subject: |
Re: Lisp-friendly backtraces [was: Lispy backtraces] |
Date: |
Mon, 05 Dec 2016 18:54:18 +0200 |
> From: Clément Pit--Claudel <address@hidden>
> Date: Mon, 5 Dec 2016 11:31:03 -0500
>
> Help with the following warning would be much appreciated:
>
> eval.c:3436:1: warning: no previous prototype for ‘backtrace_frame_apply’
> [-Wmissing-prototypes]
> backtrace_frame_apply (Lisp_Object function, union specbinding *pdl)
> ^
>
> (why does this specific function cause this warning, while other newly
> introduced functions don't?)
The others are static, this one isn't. If it really needs to be
callable from other source files, you need to put its prototype in
some header file, probably lisp.h. Otherwise, make it static.
I will review the patch soon. Thanks.
- Re: bug#24514: 24.5; Lispy backtraces, (continued)
- Re: bug#24514: 24.5; Lispy backtraces, Eli Zaretskii, 2016/12/04
- Re: bug#24514: 24.5; Lispy backtraces, Clément Pit--Claudel, 2016/12/04
- Re: bug#24514: 24.5; Lispy backtraces, Eli Zaretskii, 2016/12/04
- Re: bug#24514: 24.5; Lispy backtraces, Clément Pit--Claudel, 2016/12/04
- Re: bug#24514: 24.5; Lispy backtraces, Eli Zaretskii, 2016/12/04
- Lisp-friendly backtraces [was: Lispy backtraces], Clément Pit--Claudel, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Stefan Monnier, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Clément Pit--Claudel, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Stefan Monnier, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Clément Pit--Claudel, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces],
Eli Zaretskii <=
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Eli Zaretskii, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Clément Pit--Claudel, 2016/12/05
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Eli Zaretskii, 2016/12/06
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Clément Pit--Claudel, 2016/12/07
- Re: Lisp-friendly backtraces [was: Lispy backtraces], Clément Pit--Claudel, 2016/12/12