mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 06:41:13 +02:00
* read.c (recsexpr): Give this a dummy definition if
DEBUG_EXTENSIONS isn't #defined.
This commit is contained in:
parent
b1edcd363e
commit
604d4dd95c
1 changed files with 4 additions and 2 deletions
|
@ -184,7 +184,9 @@ scm_casei_streq (s1, s2)
|
||||||
/* recsexpr is used when recording expressions
|
/* recsexpr is used when recording expressions
|
||||||
* constructed by read:sharp.
|
* constructed by read:sharp.
|
||||||
*/
|
*/
|
||||||
|
#ifndef DEBUG_EXTENSIONS
|
||||||
|
#define recsexpr(obj, line, column, filename) (obj)
|
||||||
|
#else
|
||||||
static SCM recsexpr SCM_P ((SCM obj, int line, int column, SCM filename));
|
static SCM recsexpr SCM_P ((SCM obj, int line, int column, SCM filename));
|
||||||
|
|
||||||
static SCM
|
static SCM
|
||||||
|
@ -236,7 +238,7 @@ recsexpr (obj, line, column, filename)
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Consume an SCSH-style block comment. Assume that we've already
|
/* Consume an SCSH-style block comment. Assume that we've already
|
||||||
read the initial `#!', and eat characters until we get a
|
read the initial `#!', and eat characters until we get a
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue