From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36973 invoked by alias); 14 Jun 2017 14:42:34 -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 36278 invoked by uid 89); 14 Jun 2017 14:42:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=H*x:1.6, H*UA:1.6, b X-HELO: homiemail-a76.g.dreamhost.com Received: from sub3.mail.dreamhost.com (HELO homiemail-a76.g.dreamhost.com) (69.163.253.7) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 14 Jun 2017 14:42:31 +0000 Received: from homiemail-a76.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a76.g.dreamhost.com (Postfix) with ESMTP id 2BFE945807C for ; Wed, 14 Jun 2017 07:42:35 -0700 (PDT) Received: from vereq.eip10.org (cpe-74-75-122-130.maine.res.rr.com [74.75.122.130]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: chaw@eip10.org) by homiemail-a76.g.dreamhost.com (Postfix) with ESMTPSA id 0F86F458079 for ; Wed, 14 Jun 2017 07:42:35 -0700 (PDT) Received: from chaw by vereq.eip10.org with local (Exim 4.84_2) (envelope-from ) id 1dL9VB-0006MS-TM for kawa@sourceware.org; Wed, 14 Jun 2017 10:42:33 -0400 To: kawa Subject: Missing else-clause in strings-test.scm (trivial patch) From: "Sudarshan S Chawathe" Reply-To: "Sudarshan S Chawathe" MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Date: Wed, 14 Jun 2017 14:42:00 -0000 Message-ID: <24455.1497451353@vereq.eip10.org> X-IsSubscribed: yes X-SW-Source: 2017-q2/txt/msg00110.txt.bz2 --=-=-= Content-Type: text/plain Content-length: 193 The cond-expand near the end of testsuite/strings-test.scm is missing an else clause. It's probably fine as is but the else clause may be worth adding just for consistency. Regards, -chaw --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=strings-test-cond-expand-else.patch Content-Transfer-Encoding: quoted-printable Content-length: 660 diff --git a/testsuite/strings-test.scm b/testsuite/strings-test.scm index ef655e1..c12e528 100644 --- a/testsuite/strings-test.scm +++ b/testsuite/strings-test.scm @@ -2871,8 +2871,8 @@ (test-equal "c=F0=9F=98=BCb=F0=9F=98=82a" (reverse-list->string '(#\a #\= =F0=9F=98=82 #\b #\=F0=9F=98=BC #\c))) =20 (test-equal "y=F0=9F=98=82a=F0=9F=98=BCxy" (xsubstring "a=F0=9F=98=BCxy= =F0=9F=98=82" 3 9)) - (test-equal "y=F0=9F=98=82a=F0=9F=98=BC" (xsubstring "a=F0=9F=98=BCxy=F0= =9F=98=82" -2 2)) -)) + (test-equal "y=F0=9F=98=82a=F0=9F=98=BC" (xsubstring "a=F0=9F=98=BCxy=F0= =9F=98=82" -2 2))) ;; end section with UTF-8 literals + (else)) =20 (test-end) --=-=-=--