From 2e4b615a1010acf7d7b39663422c03269046c5b8 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Sun, 5 Jun 2005 21:22:47 +0000 Subject: [PATCH] (scm_string_split): Compare char/char in scan. Mixing an unsigned int SCM_CHAR and a char string meant an 8-bit char was never matched. --- libguile/strop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/strop.c b/libguile/strop.c index faf09d522..44d2b4b3d 100644 --- a/libguile/strop.c +++ b/libguile/strop.c @@ -549,7 +549,7 @@ SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0, { long idx, last_idx; char * p; - int ch; + char ch; SCM res = SCM_EOL; SCM_VALIDATE_STRING (1, str);