From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x735.google.com (mail-qk1-x735.google.com [IPv6:2607:f8b0:4864:20::735]) by sourceware.org (Postfix) with ESMTPS id 18C023858CDB for ; Thu, 2 Mar 2023 22:14:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 18C023858CDB Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-qk1-x735.google.com with SMTP id o9so174607qkh.6 for ; Thu, 02 Mar 2023 14:14:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1677795258; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=kIxZa4zB6W95XokktxEFRQcPanlF/3f7O8n0TEb7QbU=; b=TZLqqFdbrFmA9O3OjoadPSdfIs0RibErNUK7nRsjEWct2GQ/FBZOrDx+JnAs6eYsgW TcOXWWNmI1wqlbCBAYWNaW8ejK97hbyA/zKkHbO2rKANnUEJU1BvzXsaLXfQxNtRSSAm Tn8vc4ZTyRWdhQuFoMy7mp3UG2hx/iPN6a0i+18jaxmD7xqLoF5JrRR7N8eE2i2F5TQo sq5aEvPSagu7v8cA4DXwnHNn8wfxRIx+Uovllmulk/UZA+qVlpRVt0nLNo3NLaIrg5Yh ePaoUzkLfuDUaFU7wAvpVIWMBuoRFNUJWS7SM21OzU5+G5BZuaii5bAAwnYHZhAZg6Vo Sw0Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1677795258; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=kIxZa4zB6W95XokktxEFRQcPanlF/3f7O8n0TEb7QbU=; b=GrdfrsXxkv5kX6lhw69+jXURSwWR90yodtRPvWYWVyj0NMlZJPiOk2VQPnsKOpjVXP gOSqQ5LzkpBLC4Gq0c80+Zat0MdC28ReJkXZlAVZ/YepuWTultLChaO3sZCV6B+UhuG3 J8iCbbq9G4cczrTouQuF6XdUJ+LbX8IyI+V0bmB1yTo6rfwbx8dlQQhyPG8w/xFkMs8j Cmpyl200aGGcsl1KFlDnRjh/hu9Tlj/o+VfV79iYsmAU2zdjh3AdYJwVqXozFQZlgFUs prcp8x0xvqvd4F0wFCjiiHlv2D0S4hXGYT2ut3aXoCKoVdSTI7AxVjZll5tQbuF571rB 4KaA== X-Gm-Message-State: AO0yUKX1wZ/04WmZ7GpYVQdjpLEoKWJilmZWq1ajIQdaoM9vNCTBEfNX A5PenDFjlns41R1ZqLi8y/XtH4L1sT4remnC2wdVpxvhF9xdCg== X-Google-Smtp-Source: AK7set+rBCKEG1Yvd44L1CpvzhV7Q+8LogIjPKF3A7D/hurjv+PaUoizRnpj6wuE4uG8LH95NgJ28Uue9jNDGAIG60U= X-Received: by 2002:ae9:f402:0:b0:71f:b908:7b82 with SMTP id y2-20020ae9f402000000b0071fb9087b82mr2705212qkl.14.1677795258210; Thu, 02 Mar 2023 14:14:18 -0800 (PST) MIME-Version: 1.0 From: Panicz Maciej Godek Date: Thu, 2 Mar 2023 23:14:08 +0100 Message-ID: Subject: A bug in Kawa reader To: kawa Content-Type: multipart/alternative; boundary="0000000000005f1e0005f5f226a5" X-Spam-Status: No, score=1.5 required=5.0 tests=BAYES_20,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --0000000000005f1e0005f5f226a5 Content-Type: text/plain; charset="UTF-8" I've noticed that if there's an escaping slash at the end of a line inside of a string, and the new line starts with white spaces, the white spaces will be chomped away from the resulting string - for example, assuming that colons signify beginning of line, :"x\ : y" will be read by Kawa as "xy" rather than "x y" as it's supposed to be. --0000000000005f1e0005f5f226a5--