1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

(s_vector): Conditionalize on SCM_ENABLE_ELISP, to avoid

unused variable warning when elisp disabled.  Reported by Ryan
VanderBijl.
This commit is contained in:
Kevin Ryde 2006-06-02 23:42:01 +00:00
parent 3dfa9910db
commit 6af0266b17

View file

@ -329,7 +329,9 @@ static SCM scm_get_hash_procedure(int c);
static SCM scm_i_lreadparen (SCM *, SCM, char *, SCM *, char);
static char s_list[]="list";
#if SCM_ENABLE_ELISP
static char s_vector[]="vector";
#endif
SCM
scm_lreadr (SCM *tok_buf, SCM port, SCM *copy)