bug-guile
[Top][All Lists]
Advanced

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

string-ci* oddity


From: Bill Schottstaedt
Subject: string-ci* oddity
Date: Fri, 19 Dec 2008 06:55:21 -0800

Why do both Guile and Gauche give this result in string-ci<?
(and the other string-ci functions similarly):

guile> (char-ci<? #\a #\_)
#t
guile> (string-ci<? "a" "_")
#f

gosh> (char-ci<? #\a #\_)
#t
gosh> (string-ci<? "a" "_")
#f

The odd chars are ASCII 91 to 96:

guile> (string-ci<? "a" "[")
#f
guile> (char-ci<? #\a #\[)
#t






reply via email to

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