mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 22:40:34 +02:00
Add missing `FUNC_NAME' definition.
* libguile/load.c (scm_sys_warn_autocompilation_enabled): Define `FUNC_NAME'.
This commit is contained in:
parent
639bf3e507
commit
1505848425
1 changed files with 3 additions and 2 deletions
|
@ -650,9 +650,10 @@ autocompile_catch_handler (void *data, SCM tag, SCM throw_args)
|
||||||
|
|
||||||
SCM_DEFINE (scm_sys_warn_autocompilation_enabled, "%warn-autocompilation-enabled", 0, 0, 0,
|
SCM_DEFINE (scm_sys_warn_autocompilation_enabled, "%warn-autocompilation-enabled", 0, 0, 0,
|
||||||
(void), "")
|
(void), "")
|
||||||
|
#define FUNC_NAME s_scm_sys_warn_autocompilation_enabled
|
||||||
{
|
{
|
||||||
static int message_shown = 0;
|
static int message_shown = 0;
|
||||||
|
|
||||||
if (!message_shown)
|
if (!message_shown)
|
||||||
{
|
{
|
||||||
scm_puts (";;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=0\n"
|
scm_puts (";;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=0\n"
|
||||||
|
@ -663,8 +664,8 @@ SCM_DEFINE (scm_sys_warn_autocompilation_enabled, "%warn-autocompilation-enabled
|
||||||
|
|
||||||
return SCM_UNSPECIFIED;
|
return SCM_UNSPECIFIED;
|
||||||
}
|
}
|
||||||
|
#undef FUNC_NAME
|
||||||
|
|
||||||
|
|
||||||
static SCM
|
static SCM
|
||||||
scm_try_autocompile (SCM source)
|
scm_try_autocompile (SCM source)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue