Eliminated possible compiler warning. From r130 of TinyScheme in SourceForge.

This commit is contained in:
Kevin Cozens 2020-09-28 15:52:35 -04:00
parent 0af582f309
commit 38e4d5490b
1 changed files with 2 additions and 0 deletions

View File

@ -1943,7 +1943,9 @@ static INLINE int is_one_of(char *s, gunichar c) {
/* skip white characters */
static INLINE int skipspace(scheme *sc) {
gunichar c;
#if SHOW_ERROR_LINE
int curr_line = 0;
#endif
do {
c=inchar(sc);
#if SHOW_ERROR_LINE