guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: netbsd/amd64 build getting further...


From: Greg Troxel
Subject: Re: netbsd/amd64 build getting further...
Date: Fri, 28 Aug 2009 19:47:05 -0400
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/22.3 (berkeley-unix)

fix:

diff --git a/libguile/read.c b/libguile/read.c
index d91c868..5f9ce36 100644
--- a/libguile/read.c
+++ b/libguile/read.c
@@ -1437,7 +1437,7 @@ scm_scan_for_encoding (SCM port)
   /* grab the next token */
   i = 0;
   while (pos + i - header <= SCM_ENCODING_SEARCH_SIZE 
-        && (isalnum(pos[i]) || pos[i] == '_' || pos[i] == '-' || pos[i] == 
'.'))
+        && (isalnum((int) pos[i]) || pos[i] == '_' || pos[i] == '-' || pos[i] 
== '.'))
     i++;
 
   if (i == 0)

Attachment: pgpaK7tqkdRDA.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]