From debbugs-submit-bounces@debbugs.gnu.org Tue May 29 20:34:48 2018 Received: (at submit) by debbugs.gnu.org; 30 May 2018 00:34:48 +0000 Received: from localhost ([127.0.0.1]:54471 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNp4i-0003QZ-8V for submit@debbugs.gnu.org; Tue, 29 May 2018 20:34:48 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47647) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fNp4g-0003QM-Lk for submit@debbugs.gnu.org; Tue, 29 May 2018 20:34:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNp4a-0002Wn-Fo for submit@debbugs.gnu.org; Tue, 29 May 2018 20:34:41 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05,FREEMAIL_FROM, T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:56951) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fNp4a-0002Wf-Bz for submit@debbugs.gnu.org; Tue, 29 May 2018 20:34:40 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38617) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNp4Z-0001hk-1N for bug-gnu-emacs@gnu.org; Tue, 29 May 2018 20:34:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNp4V-0002Uo-NK for bug-gnu-emacs@gnu.org; Tue, 29 May 2018 20:34:39 -0400 Received: from aibo.runbox.com ([91.220.196.211]:53316) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fNp4V-0002TW-An for bug-gnu-emacs@gnu.org; Tue, 29 May 2018 20:34:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=runbox.com; s=rbselector1; h=Content-Type:MIME-Version:Message-ID:Date:Subject:To:From; bh=TG0ne1wd9uwdKV/JwarqnICByhPJNJTLR+RC5bLB3Zo=; b=QkFhhHKUPWNLUsoZc+Y7Xf4qt ZD3Su5HuNh3YETHDCf7XFFmu5SSU14/AdH0hPn54lzhRb2WT9f0BInfksrH42u5CsbIW31D3WMSz+ DtzX2tM0NXK/sw/1j4r3dVpPWz0AzpEC+Va0n20IqOJa7CUgmzWIKuyuKOME2dFukTz9uWYa7c0IR MZVUOTqUBA01kzM59qR0iH0X8nu6NzgUofA82c1ERfvbzVTqseFOeA4l78ZMfievkYgMqqmYHZv4y H2Wptx0g2/rmOVViHRJ4XWcbE++tcxSuAWP6T8Z3OVT0/awpJ3+VkKKHg+8ogcpSztX15uMyo0YRO O7WqyZn4Q==; Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1fNp4R-0005nP-PQ for bug-gnu-emacs@gnu.org; Wed, 30 May 2018 02:34:31 +0200 Received: from c-24-22-244-161.hsd1.wa.comcast.net ([24.22.244.161] helo=chinook) by mailfront12.runbox.com with esmtpsa (uid:179284 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1fNp4P-0003K9-Ky for bug-gnu-emacs@gnu.org; Wed, 30 May 2018 02:34:30 +0200 From: Gemini Lasswell To: bug-gnu-emacs@gnu.org Subject: 26.1; cl-prin1 doesn't print #' and ignores print-quoted Date: Tue, 29 May 2018 17:34:19 -0700 Message-ID: <87muwi56d0.fsf@runbox.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.1 (-----) --=-=-= Content-Type: text/plain CL printing doesn't observe the print variable print-quoted and always prints #'foo as (function foo). To reproduce, execute the following code (I used emacs -Q and IELM): (let ((quoted-stuff '('a #'b `(,c ,@d)))) (let ((print-quoted t)) (cl-prin1 quoted-stuff) (terpri) (prin1 quoted-stuff) (terpri)) (let ((print-quoted nil)) (cl-prin1 quoted-stuff) (terpri) (prin1 quoted-stuff) (terpri))) Results: ('a (function b) `(,c ,@d)) ('a #'b `(,c ,@d)) ('a (function b) `(,c ,@d)) ((quote a) (function b) (\` ((\, c) (\,@ d)))) I expect cl-prin1 and prin1 to do the same thing in this example. Here's a patch to make cl-prin1 behave like prin1: --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=0001-Make-cl-print-respect-print-quoted.patch >From 99b24a7dc7472d04e6de43fb48f45869a272c26c Mon Sep 17 00:00:00 2001 From: Gemini Lasswell Date: Tue, 29 May 2018 11:41:09 -0700 Subject: [PATCH] Make cl-print respect print-quoted * lisp/emacs-lisp/cl-print.el (cl-print-object) : Print quote and its relatives as lists if print-quoted is nil. Add printing of 'function' as #'. * test/lisp/emacs-lisp/cl-print-tests.el (cl-print-tests-5): New test. --- lisp/emacs-lisp/cl-print.el | 9 +++++++-- test/lisp/emacs-lisp/cl-print-tests.el | 10 ++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/cl-print.el b/lisp/emacs-lisp/cl-print.el index 55e2bf8bd4..1eae8faf23 100644 --- a/lisp/emacs-lisp/cl-print.el +++ b/lisp/emacs-lisp/cl-print.el @@ -61,11 +61,16 @@ cl-print--depth (princ "..." stream) (let ((car (pop object)) (count 1)) - (if (and (memq car '(\, quote \` \,@ \,.)) + (if (and print-quoted + (memq car '(\, quote function \` \,@ \,.)) (consp object) (null (cdr object))) (progn - (princ (if (eq car 'quote) '\' car) stream) + (princ (cond + ((eq car 'quote) '\') + ((eq car 'function) "#'") + (t car)) + stream) (cl-print-object (car object) stream)) (princ "(" stream) (cl-print-object car stream) diff --git a/test/lisp/emacs-lisp/cl-print-tests.el b/test/lisp/emacs-lisp/cl-print-tests.el index bfce4a16ce..404d323d0c 100644 --- a/test/lisp/emacs-lisp/cl-print-tests.el +++ b/test/lisp/emacs-lisp/cl-print-tests.el @@ -72,6 +72,16 @@ (should (equal "#s(cl-print-tests-struct :a (a (b (c ...))) :b nil :c nil :d nil :e nil)" (cl-prin1-to-string deep-struct))))) +(ert-deftest cl-print-tests-5 () + "CL printing observes `print-quoted'." + (let ((quoted-stuff '('a #'b `(,c ,@d)))) + (let ((print-quoted t)) + (should (equal "('a #'b `(,c ,@d))" + (cl-prin1-to-string quoted-stuff)))) + (let ((print-quoted nil)) + (should (equal "((quote a) (function b) (\\` ((\\, c) (\\,@ d))))" + (cl-prin1-to-string quoted-stuff)))))) + (ert-deftest cl-print-circle () (let ((x '(#1=(a . #1#) #1#))) (let ((print-circle nil)) -- 2.16.2 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 04 21:03:45 2018 Received: (at 31649) by debbugs.gnu.org; 5 Jun 2018 01:03:45 +0000 Received: from localhost ([127.0.0.1]:33776 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQ0O1-0007yW-5h for submit@debbugs.gnu.org; Mon, 04 Jun 2018 21:03:45 -0400 Received: from mail-it0-f42.google.com ([209.85.214.42]:37674) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQ0Nz-0007xl-7h; Mon, 04 Jun 2018 21:03:43 -0400 Received: by mail-it0-f42.google.com with SMTP id l6-v6so1357338iti.2; Mon, 04 Jun 2018 18:03:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=mSLtwvvqH8Tu0Kr2x3StNZ26eFzQD/i4G74RAe0KUz4=; b=Y+rXm97L3PJCVNwhrwo5qoCJ+QKkDeS+vuXJZH+2FK3Kgm8SxBP1GktNGI/n8NP+xL iueIuv8JEF43WJOdcnTRCgcT7TBLnHtJvHaEN6VSGc9bbkFbVSUyk2h33sK0GcuyTVtS JCXUiLcagSMBmjYmPJK3l8zxdQmDk1/+m3u+SGiNDhzK5G25bTrqp8SOFIt4twhZO+Xa tREuLtnEZPGK0pT9Hi3ufXvn7L293i9JmaJBI4hEkWkAZVLUzjSV3YgbN9+BS6zs2DrM tsyKMoghu5pS6GowcUlwzLWjvyRTLPwEXJS5i6oqOeaCizwYu1WAgLxy5ez1/93qwx3A LUtg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=mSLtwvvqH8Tu0Kr2x3StNZ26eFzQD/i4G74RAe0KUz4=; b=UYB0wPYbQUcr2ERmOGDG8+KiPSw58ru1ILsNUJlDV6ohoaougA5wWyVL5dwhU9SL1A bg7O1GFDJa/cKArGxNFWfNqEG2QPnAXLu5xAQelCnBCc1W5/27WfNage8wnzVLYMdpn0 1xBYIj43aJz8X+3QSdXjvj7rd5poG8htUHzpHgk4iuppVBzCiD9KrECkyKQlHsAELx4f OpiZaur4Giw50ORAJt2DkqOc3UHA34p7ASI5J7luXrvBYd//J+hacc8Cy61Dn0pYYJ0B Sf02IQITlyo4ROwfm7jPA3doJm9DghiLWoE3NuL2B4BiWTfQLWrbAW0SqW5Ft3PoZ+H4 F1rw== X-Gm-Message-State: APt69E14CfykorFpJKG0mPwWUjXRdGi3BFJthYCsmDNNCpIf8pysVovg nWmFGNFgy9cOPo7WfvFGVr+nLw== X-Google-Smtp-Source: ADUXVKKWfo/JRk2cw26DVw6o4RCgHmNRYxoV4gNv3SVb3198smLSzLPNNvhDSPjB5m1YNrJnVFOgKQ== X-Received: by 2002:a24:52cb:: with SMTP id d194-v6mr14702534itb.46.1528160617652; Mon, 04 Jun 2018 18:03:37 -0700 (PDT) Received: from zebian (cbl-45-2-119-34.yyz.frontiernetworks.ca. [45.2.119.34]) by smtp.googlemail.com with ESMTPSA id g26-v6sm653829iti.0.2018.06.04.18.03.36 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 04 Jun 2018 18:03:36 -0700 (PDT) From: Noam Postavsky To: Gemini Lasswell Subject: Re: bug#31649: 26.1; cl-prin1 doesn't print #' and ignores print-quoted References: <87muwi56d0.fsf@runbox.com> Date: Mon, 04 Jun 2018 21:03:36 -0400 In-Reply-To: <87muwi56d0.fsf@runbox.com> (Gemini Lasswell's message of "Tue, 29 May 2018 17:34:19 -0700") Message-ID: <87vaay6o47.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 31649 Cc: 31649@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) severity 31649 minor quit Gemini Lasswell writes: > Subject: [PATCH] Make cl-print respect print-quoted Looks good to me. Just a minor nitpick about the message: > * lisp/emacs-lisp/cl-print.el (cl-print-object) : Print quote > and its relatives as lists if print-quoted is nil. Add printing of ^ double space I don't think "as lists" is the right description, maybe "with read syntax". From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 04 23:31:55 2018 Received: (at 31649) by debbugs.gnu.org; 5 Jun 2018 03:31:55 +0000 Received: from localhost ([127.0.0.1]:33840 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQ2hP-0004vi-7n for submit@debbugs.gnu.org; Mon, 04 Jun 2018 23:31:55 -0400 Received: from aibo.runbox.com ([91.220.196.211]:42432) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQ2hL-0004vZ-IG for 31649@debbugs.gnu.org; Mon, 04 Jun 2018 23:31:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=runbox.com; s=rbselector1; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From; bh=bJWi2OcEW5jyL9vG8XHN9OslgdeX5fjo/QGx3pXbsrY=; b=e4SZe/ToQ3yRhyrkJ1Atd7JK/T O9mPVwYLUNDMrc9h0tgT+Vu2deEjRIDBoKRMowPTkNz7B6VRw081qPRM2+x8Ju1EwT+LPuJmiWw3K K0HWG1bBZ2B4WV1TviYwHv+NK3S+z2WGYqOG7+/rZatvmdwdshn0q6YMcmVlvHjgib0u/Cp7QJQ5Z u37tNLAmyE0gTENjDjxRgHHlqO3T/PRG5GhX1FxVw6MoinISPCy2PiqNDHGCShkaf9nCfGeeLttrQ Xuim8QMm6dxCpXwwJnRhyXbW6vp/aw3Vyk1/pRqOOd1+MK72HdXymN1DmiNmyCS8Cy1T4RsKUr8Tv cOMAFcsA==; Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1fQ2hK-0000NS-63; Tue, 05 Jun 2018 05:31:50 +0200 Received: from c-24-22-244-161.hsd1.wa.comcast.net ([24.22.244.161] helo=chinook) by mailfront11.runbox.com with esmtpsa (uid:179284 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1fQ2hG-0007ch-Rk; Tue, 05 Jun 2018 05:31:47 +0200 From: Gemini Lasswell To: Noam Postavsky Subject: Re: bug#31649: 26.1; cl-prin1 doesn't print #' and ignores print-quoted References: <87muwi56d0.fsf@runbox.com> <87vaay6o47.fsf@gmail.com> Date: Mon, 04 Jun 2018 20:31:44 -0700 In-Reply-To: <87vaay6o47.fsf@gmail.com> (Noam Postavsky's message of "Mon, 04 Jun 2018 21:03:36 -0400") Message-ID: <87602xoqn3.fsf@runbox.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 31649 Cc: 31649@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Noam Postavsky writes: >> * lisp/emacs-lisp/cl-print.el (cl-print-object) : Print quote >> and its relatives as lists if print-quoted is nil. Add printing of > ^ > double space > > I don't think "as lists" is the right description, maybe "with read > syntax". I'll fix the message. Should this go in master or emacs-26? From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 05 07:51:43 2018 Received: (at 31649) by debbugs.gnu.org; 5 Jun 2018 11:51:43 +0000 Received: from localhost ([127.0.0.1]:34425 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQAV4-00048v-Rl for submit@debbugs.gnu.org; Tue, 05 Jun 2018 07:51:43 -0400 Received: from mail-io0-f177.google.com ([209.85.223.177]:43185) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQAV2-00048h-Nd for 31649@debbugs.gnu.org; Tue, 05 Jun 2018 07:51:41 -0400 Received: by mail-io0-f177.google.com with SMTP id t6-v6so2944322iob.10 for <31649@debbugs.gnu.org>; Tue, 05 Jun 2018 04:51:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=eoo5umZGG0vO0bBu92U7I2lUZGDpXvkfSRJeY9nHSAM=; b=g0LgmZICMq+FjjJqE6euSx4gatCRLhypTGg8xT7dTjW6LfUrZw9uQqbOgocCLbNvtg HgZAOVGFlHLtATRltt7MozckG30qlRrb6dkH1MLEYRxO6Mo7CapgaYaRJst1o//DaVVt c0UbQLeiNoEp6HBGzgCvaYSu6nM0SjvDJ3XW3nW7nFJAcn4j5Q0BjnwblVuiaH2jSY6t PlgsnZyjasE4dTMSrJ/WClutjOWxdNBy7ju03R366h+UIn1JsIP2rzHMzpzDgdAVLLdL C8bkw+URmKjKH2P9YoCS6asfqBN2pQkwJH3YHchge6X8e3HfdRdOj55mT5DF+kIm7gaP EqLw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=eoo5umZGG0vO0bBu92U7I2lUZGDpXvkfSRJeY9nHSAM=; b=UjK1/ou3SRW8h49leHZZSpGWN33qt2G3FJVxR1X3sBimdbHtFT5h3atSuVYwnnFPWH K/Eq0VuAy5oBg3sPhpNOczk7FbyWmYI4Hx9O1p5HRUXqdzSg/KzgAsjDDXgfv4Jaz2pL ok1oQCnowOZg7ZQn2jO7BHCBkHzq5qLUNCmRilTxjg48AXrlDS5nBlXLWs8BPv1RPdak Ho4xWZ+1631iQ6W31CceWhULwVUqKhcb6LjdTO3d+iDF8i2CPg8uH61ube1GrfjWO5MV GN0SuVzvJ3pBDzYOPhoBwEPbKqmB/WhyKXBvLn7lnLiuKZ9f7uWPUyu6g7HiOrSntDj2 6thQ== X-Gm-Message-State: ALKqPwdd/cgrk5X2iGDO2xAe6rCTcENjTojbxSZxHbax5J2LqIJdLyu5 vN9mkOSM39777fcW7Rend2qMcw== X-Google-Smtp-Source: ADUXVKITN14beVnzmJXizKF+AJN0CoEsEB0IClsKv4GciQss1ByAYlEpazoqOyKeSCX93NEKwVihRQ== X-Received: by 2002:a6b:b288:: with SMTP id b130-v6mr26418157iof.153.1528199495242; Tue, 05 Jun 2018 04:51:35 -0700 (PDT) Received: from zebian (cbl-45-2-119-34.yyz.frontiernetworks.ca. [45.2.119.34]) by smtp.googlemail.com with ESMTPSA id p130-v6sm5676450iod.61.2018.06.05.04.51.33 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 05 Jun 2018 04:51:34 -0700 (PDT) From: Noam Postavsky To: Gemini Lasswell Subject: Re: bug#31649: 26.1; cl-prin1 doesn't print #' and ignores print-quoted References: <87muwi56d0.fsf@runbox.com> <87vaay6o47.fsf@gmail.com> <87602xoqn3.fsf@runbox.com> Date: Tue, 05 Jun 2018 07:51:32 -0400 In-Reply-To: <87602xoqn3.fsf@runbox.com> (Gemini Lasswell's message of "Mon, 04 Jun 2018 20:31:44 -0700") Message-ID: <87sh6178or.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.8 (/) X-Debbugs-Envelope-To: 31649 Cc: 31649@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.8 (-) Gemini Lasswell writes: > Noam Postavsky writes: > >>> * lisp/emacs-lisp/cl-print.el (cl-print-object) : Print quote >>> and its relatives as lists if print-quoted is nil. Add printing of >> ^ >> double space >> >> I don't think "as lists" is the right description, maybe "with read >> syntax". > > I'll fix the message. Should this go in master or emacs-26? I'd call this a bug/deficiency in a new feature, so emacs-26. From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 07 11:48:39 2018 Received: (at control) by debbugs.gnu.org; 7 Jun 2018 15:48:39 +0000 Received: from localhost ([127.0.0.1]:38344 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQx9Q-0007yL-Qm for submit@debbugs.gnu.org; Thu, 07 Jun 2018 11:48:39 -0400 Received: from aibo.runbox.com ([91.220.196.211]:59822) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQx9L-0007y9-QN for control@debbugs.gnu.org; Thu, 07 Jun 2018 11:48:32 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=runbox.com; s=rbselector1; h=Subject:From:To:Message-Id:Date; bh=5X7nvspe/N2WBQmtj06DoMrsWkAlF9upLyd2Kg/h0fM=; b=n0w7VNNNjaIL0IVLMgiTgvTeqy A7Xt/DJPF48GGkBSUDdwjg55vNlz1BbxXOuo6aRxLdTh0AagTCQRx/ykDExITZX/4j6SqAUKWvj+b /cuQiOTTUcFtWXwjf1IID/ANuqs6xjbnOGNSUVI1Z4XxiafqqszyG+TrSzE6hS6rOHu57+3beCsWg kd8AXT26ck6t6jRKSX4ZOx4Xgeh6xDbld62tlJIvdGSq2br1mEpfP3mX73J2KTgOOnP1TW+HmSLEZ dyKgnPktxNFxXiK3yJmNLNuR2i9xeVjr8fnKJdSx2aiP3N9tNVey1yPjzN1g+z7c8/69eEprXMZdq lHe48g9Q==; Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit02.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1fQx9K-0005CV-2Q for control@debbugs.gnu.org; Thu, 07 Jun 2018 17:48:30 +0200 Received: from c-24-22-244-161.hsd1.wa.comcast.net ([24.22.244.161] helo=chinook) by mailfront11.runbox.com with esmtpsa (uid:179284 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1fQx9C-0005yL-DZ for control@debbugs.gnu.org; Thu, 07 Jun 2018 17:48:23 +0200 Date: Thu, 07 Jun 2018 08:48:20 -0700 Message-Id: <87lgbqmwcb.fsf@runbox.com> To: control@debbugs.gnu.org From: Gemini Lasswell Subject: control message for bug #31649 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) tags 31649 fixed From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 07 11:50:11 2018 Received: (at control) by debbugs.gnu.org; 7 Jun 2018 15:50:11 +0000 Received: from localhost ([127.0.0.1]:38350 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQxAv-00081E-Pl for submit@debbugs.gnu.org; Thu, 07 Jun 2018 11:50:11 -0400 Received: from aibo.runbox.com ([91.220.196.211]:44468) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fQxAu-000817-JN for control@debbugs.gnu.org; Thu, 07 Jun 2018 11:50:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=runbox.com; s=rbselector1; h=Subject:From:To:Message-Id:Date; bh=0kK0YGXsLniIoV9i4nRPjHKgA7U3re4mObRGZ70df9M=; b=ZCqeT1ECixQbl4qVyp7iaCIXcM S6WTcJJR/1iYb0mZMrbcyCf8UpzFkDG8meXHU7Z12+zl3rqgj1ZgrW23E9MjrY/Ijfpb/sdZxT3nL zF76kFTe7BBtsNOjlOteUnI3UxaV+vISBxOltPkDLgrYh8jsrf6YsWy93bghJtSXhB2zMzHLLfydt BTmtO4X3FW0zPKIxxaDckJlvFhMzJyynbksQhZ5eSnKofMn1/FMY6Ycz10QLA1D+biLhcKZdmAHuP wxWiZsbBmu1xYbHwv8eZCHctp1uIQXCV0UhRggoOKw57bhW6BkIB0D969qK5PoTUMwauLY9+hBAmO 9OHXI9ig==; Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1fQxAt-0003y6-Ri for control@debbugs.gnu.org; Thu, 07 Jun 2018 17:50:07 +0200 Received: from c-24-22-244-161.hsd1.wa.comcast.net ([24.22.244.161] helo=chinook) by mailfront10.runbox.com with esmtpsa (uid:179284 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1fQxAT-0003Ir-6F for control@debbugs.gnu.org; Thu, 07 Jun 2018 17:49:41 +0200 Date: Thu, 07 Jun 2018 08:49:39 -0700 Message-Id: <87k1ramwa4.fsf@runbox.com> To: control@debbugs.gnu.org From: Gemini Lasswell Subject: control message for bug #31649 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) tags 31649 fixed close 31649 26.2 From unknown Sat Jun 14 09:01:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 06 Jul 2018 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator