From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30540 invoked by alias); 27 Nov 2014 17:45:22 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 30437 invoked by uid 89); 27 Nov 2014 17:45:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: terror.hungry.com Received: from terror.hungry.com (HELO terror.hungry.com) (199.181.107.40) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 27 Nov 2014 17:45:19 +0000 Received: from [10.0.1.153] ([98.210.163.199]) (AUTH: PLAIN alves, SSL: TLSv1/SSLv3,128bits,AES128-SHA) by terror.hungry.com with ESMTPSA; Thu, 27 Nov 2014 09:45:07 -0800 id 00010047.0000000054776328.0000130A Message-ID: <54776323.4000101@hungry.com> Date: Thu, 27 Nov 2014 17:45:00 -0000 From: Seth Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: kawa@sourceware.org Subject: srfi-14 char-set<= problem Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-q4/txt/msg00097.txt.bz2 (import (scheme base) (scheme write) (srfi 14)) (write (char-set<= (char-set #\u) (char-set #\u))) (newline) (write (char-set<= (char-set #\u) (char-set #\u #\a))) (newline) This prints: #t #f -seth