emacs-devel
[Top][All Lists]
Advanced

[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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]