From debbugs-submit-bounces@debbugs.gnu.org Fri May 07 15:29:20 2010 Received: (at submit) by debbugs.gnu.org; 7 May 2010 19:29:20 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OATEe-0001fM-49 for submit@debbugs.gnu.org; Fri, 07 May 2010 15:29:20 -0400 Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OAT5M-0001al-6G for submit@debbugs.gnu.org; Fri, 07 May 2010 15:19:44 -0400 Received: from lists.gnu.org ([199.232.76.165]:52638) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OAT5K-0005V5-99 for submit@debbugs.gnu.org; Fri, 07 May 2010 15:19:42 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1OAT5J-0000ag-G3 for bug-gnu-emacs@gnu.org; Fri, 07 May 2010 15:19:41 -0400 Received: from [140.186.70.92] (port=33999 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OAT5H-0000ZR-VY for bug-gnu-emacs@gnu.org; Fri, 07 May 2010 15:19:40 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OAT5G-0006xt-NS for bug-gnu-emacs@gnu.org; Fri, 07 May 2010 15:19:39 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:51156) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OAT5G-0006xX-I8 for bug-gnu-emacs@gnu.org; Fri, 07 May 2010 15:19:38 -0400 Received: by fxm7 with SMTP id 7so254527fxm.0 for ; Fri, 07 May 2010 12:19:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=ZhWhxj4C6hdpDjUcX+pxcmdT1X9V8aeXN9/5GKD7xRc=; b=YYlEUJ9ct3hP2wNRtHSlBE5quNnCthJm3DFUQmeihLZE0p6HIp0ecR9dUfdkrFVkw5 CtuzCCax+eOeW72pfwxWW4BGM/+mbJwz2nzto1fOx+k/I+hKI/TVFROU0inlfOIcbOlb 7N59q1pibfbN8N8c+L+qPC/uk7ZZ38WHuQBr0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=jlUBjqp0KNQbUcAuoxPXOZgKhxgqGkD8LjcYPzUWVqmv6ixz1BDRZVOFJZhaNteO7h slj8P1hCJNAw/XrRZ6W6DbfMwrnN6p+Qdk9XYdBD44+E/UIGBQTj9OASDC7AEcrQuo6m heDLh+peh9SffeuigXsRVr4400gBsZOXUywng= MIME-Version: 1.0 Received: by 10.103.37.28 with SMTP id p28mr195113muj.86.1273259976258; Fri, 07 May 2010 12:19:36 -0700 (PDT) Received: by 10.103.218.1 with HTTP; Fri, 7 May 2010 12:19:36 -0700 (PDT) Date: Fri, 7 May 2010 21:19:36 +0200 Message-ID: Subject: Emerge doesn't handle file names with spaces on MS Windows From: =?ISO-8859-1?Q?Joakim_H=E5rsman?= To: bug-gnu-emacs@gnu.org Content-Type: text/plain; charset=ISO-8859-1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 07 May 2010 15:29:19 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.0 (-----) If any of the file names supplied to Emerge (e.g to emerge-files-with-ancestor) has spaces in in its path and Emacs is running on MS Windows, the merge fails. The problem is the way Emerge passes the file names to diff, it tries to escape spaces (and other metchars) with backslashes, but that doesn't work on MS Windows since the backslash is a path separator there. If I change the definition of emerge-protect-metachars to the following it works: (defun emerge-protect-metachars (s) (if (member system-type '(windows-nt ms-dos)) (emerge-protect-metachars-win s) (emerge-protect-metachars-nix s))) (defun emerge-protect-metachars-nix (s) (let ((limit 0)) (while (string-match emerge-metachars s limit) (setq s (concat (substring s 0 (match-beginning 0)) "\\" (substring s (match-beginning 0)))) (setq limit (1+ (match-end 0))))) s) (defun emerge-protect-metachars-win (s) (concat "\"" s "\"")) Here's some output which might be useful: GNU Emacs 23.1.1 (i386-mingw-nt5.1.2600) of 2009-07-30 on SOFT-MJASON From debbugs-submit-bounces@debbugs.gnu.org Sat May 08 11:10:10 2010 Received: (at 6136) by debbugs.gnu.org; 8 May 2010 15:10:11 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OAlfO-00026i-Br for submit@debbugs.gnu.org; Sat, 08 May 2010 11:10:10 -0400 Received: from mtaout23.012.net.il ([80.179.55.175]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OAlfL-00026R-WA for 6136@debbugs.gnu.org; Sat, 08 May 2010 11:10:09 -0400 Received: from conversion-daemon.a-mtaout23.012.net.il by a-mtaout23.012.net.il (HyperSendmail v2007.08) id <0L2300H00WPP7A00@a-mtaout23.012.net.il> for 6136@debbugs.gnu.org; Sat, 08 May 2010 18:10:07 +0300 (IDT) Received: from HOME-C4E4A596F7 ([84.229.0.144]) by a-mtaout23.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0L2300FYXWSOP050@a-mtaout23.012.net.il>; Sat, 08 May 2010 18:10:01 +0300 (IDT) Date: Sat, 08 May 2010 18:08:01 +0300 From: Eli Zaretskii Subject: Re: bug#6136: Emerge doesn't handle file names with spaces on MS Windows In-reply-to: To: Joakim =?UTF-8?Q?H=C3=A5rsman?= Message-id: <838w7uqvn2.fsf@gnu.org> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: QUOTED-PRINTABLE X-012-Sender: halo1@inter.net.il References: X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: 6136 Cc: 6136@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Eli Zaretskii List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.6 (-) > Date: Fri, 7 May 2010 21:19:36 +0200 > From: Joakim H=C3=A5rsman > Cc:=20 >=20 > If any of the file names supplied to Emerge (e.g to > emerge-files-with-ancestor) has spaces in in its path and Emacs is > running on MS Windows, the merge fails. >=20 > The problem is the way Emerge passes the file names to diff, it tri= es > to escape spaces (and other metchars) with backslashes, but that > doesn't work on MS Windows since the backslash is a path separator > there. >=20 > If I change the definition of emerge-protect-metachars to the > following it works: >=20 > (defun emerge-protect-metachars (s) > (if (member system-type '(windows-nt ms-dos)) > (emerge-protect-metachars-win s) > (emerge-protect-metachars-nix s))) >=20 > (defun emerge-protect-metachars-nix (s) > (let ((limit 0)) > (while (string-match emerge-metachars s limit) > (setq s (concat (substring s 0 (match-beginning 0)) > =09=09 "\\" > =09=09 (substring s (match-beginning 0)))) > (setq limit (1+ (match-end 0))))) > s) >=20 > (defun emerge-protect-metachars-win (s) > (concat "\"" s "\"")) I think emerge-protect-metachars should simply use shell-quote-argument, on all platforms. Then it won't need to distinguish between the different flavors, and it won't need to know which characters need protection, something that is shell-dependent and thus tricky even on Unix. Could you try a patch along those line, and see if it works? From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 06 10:06:39 2016 Received: (at 6136) by debbugs.gnu.org; 6 Aug 2016 14:06:39 +0000 Received: from localhost ([127.0.0.1]:58040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bW2FL-0005tD-0o for submit@debbugs.gnu.org; Sat, 06 Aug 2016 10:06:39 -0400 Received: from mail-io0-f171.google.com ([209.85.223.171]:36133) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bW2FI-0005ss-VI; Sat, 06 Aug 2016 10:06:37 -0400 Received: by mail-io0-f171.google.com with SMTP id b62so323273848iod.3; Sat, 06 Aug 2016 07:06:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=3zIwl/lSI7dDmBUerilFTMqU6cI1CkF0CU6O3f3I6lQ=; b=UDE+29SU8sFti6MziAJSVwnjZ+1gcD7v/XFtTKC6K7dE2FdI7dTxsnpGV38528aCtb ytlr6WkiE3jT0yFUuVeSsbGImXLGejnxukMcweX22a+xvsjEwOtGwTB89YllZpReMhEz xm9weoDdRhKFFom5LwqCg06mr+h9ioPbLcOT73yjFtuC02/9jZJJ2TA4+s9b8SLyU3WB sgk7fSjsG4vjb2Hqe1XwCjxP5MB/LeS9BD7RPR73ByaEDSHy8s8+YbHOIBqO7SDT0OSJ wsBBocTDbBxnZZcIZ+p++kXJCJ8VUEx8YVXyg+n96TvSu+Cr0yOU8qRLRcOK5VQDOSy4 NcIQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:cc:subject:references:date :in-reply-to:message-id:user-agent:mime-version; bh=3zIwl/lSI7dDmBUerilFTMqU6cI1CkF0CU6O3f3I6lQ=; b=Hzqi8/CjvbnDVeYNc7IIY+TFQWWI77Ama+uZLNKYE8a8oGP599JbLU2KcS4wqNc3ih v9MwvsMWxfTcz329yTNd102FIaT3FVvZBLbfUP4EUpxEydJjN9vRNXmxjgUpBM5JAQrE Z4Qmkd88bV5M1Pghdkb1E+NMA9oyqsld+R7BG/R5vbnAAC+pDQXDiwVpt3kCJp4K0Yto Fu3PQfC97D7Y5/okTFsoiQ26V3bWSDQU+gAO3Qpcizp0z0xKeRKCgk2freKPiVeqBpIv TZ1Nnba08HIhtC1DtA/9U6bu1mt8PvwAQtwf08/yW++bgJKSSqP16JDD3pnDqQJy4XJm XrjQ== X-Gm-Message-State: AEkoouvO8znRY5QQ8hwjTxQaWlxCIS/yQTdo+0LbvGHp3Fnd41nIQ6wpXvuORgqsJ+sBkw== X-Received: by 10.107.152.149 with SMTP id a143mr85436569ioe.193.1470492391594; Sat, 06 Aug 2016 07:06:31 -0700 (PDT) Received: from zony (206-188-64-44.cpe.distributel.net. [206.188.64.44]) by smtp.googlemail.com with ESMTPSA id o15sm7696226ith.2.2016.08.06.07.06.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 06 Aug 2016 07:06:30 -0700 (PDT) From: npostavs@users.sourceforge.net To: Eli Zaretskii Subject: Re: bug#6136: Emerge doesn't handle file names with spaces on MS Windows References: <838w7uqvn2.fsf@gnu.org> Date: Sat, 06 Aug 2016 10:06:37 -0400 In-Reply-To: <838w7uqvn2.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 08 May 2010 18:08:01 +0300") Message-ID: <87zioq56vm.fsf@users.sourceforge.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.93 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 6136 Cc: 6136@debbugs.gnu.org, Joakim =?utf-8?Q?H=C3=A5rsman?= 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: -0.7 (/) --=-=-= Content-Type: text/plain fixed 6136 23.3.90 quit Was reported a second time (http://article.gmane.org/gmane.emacs.help/80250) and then fixed by 576bce32 (2011-03-19 "Fix emerge.el on MS-Windows and MS-DOS...") Eli Zaretskii writes: > I think emerge-protect-metachars should simply use > shell-quote-argument, on all platforms. Then it won't need to > distinguish between the different flavors, and it won't need to know > which characters need protection, something that is shell-dependent > and thus tricky even on Unix. But the non-Windows case still uses emerge-metachars. Should we make it same on all platforms: --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=v1-0001-Make-emerge-always-use-shell-quote-argument.patch Content-Description: patch >From 7f960d1e91eb69ac14c55de2dc4a78adbf1274f1 Mon Sep 17 00:00:00 2001 From: Noam Postavsky Date: Sat, 6 Aug 2016 09:51:15 -0400 Subject: [PATCH v1] Make emerge always use shell-quote-argument * lisp/vc/emerge.el (emerge-metachars): Obsolete. (emerge-protect-metachars): Delete. (emerge-make-diff-list, emerge-make-diff3-list): Replace all calls to `emerge-protect-metachars' with `shell-quote-argument' so that shell quoting is done the same on all system types (Bug #6136). Also shell quote `emerge-diff-program' and `emerge-diff3-program'. --- lisp/vc/emerge.el | 37 ++++++++++++------------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/lisp/vc/emerge.el b/lisp/vc/emerge.el index de25cba..058b15c 100644 --- a/lisp/vc/emerge.el +++ b/lisp/vc/emerge.el @@ -621,9 +621,10 @@ emerge-make-diff-list (erase-buffer) (shell-command (format "%s %s %s %s" - emerge-diff-program emerge-diff-options - (emerge-protect-metachars file-A) - (emerge-protect-metachars file-B)) + (shell-quote-argument emerge-diff-program) + emerge-diff-options + (shell-quote-argument file-A) + (shell-quote-argument file-B)) t)) (emerge-prepare-error-list emerge-diff-ok-lines-regexp) (emerge-convert-diffs-to-markers @@ -792,10 +793,11 @@ emerge-make-diff3-list (erase-buffer) (shell-command (format "%s %s %s %s %s" - emerge-diff3-program emerge-diff-options - (emerge-protect-metachars file-A) - (emerge-protect-metachars file-ancestor) - (emerge-protect-metachars file-B)) + (shell-quote-argument emerge-diff3-program) + emerge-diff-options + (shell-quote-argument file-A) + (shell-quote-argument file-ancestor) + (shell-quote-argument file-B)) t)) (emerge-prepare-error-list emerge-diff3-ok-lines-regexp) (emerge-convert-diffs-to-markers @@ -3171,26 +3173,11 @@ emerge-unslashify-name ;; Metacharacters that have to be protected from the shell when executing ;; a diff/diff3 command. -(defcustom emerge-metachars - (if (memq system-type '(ms-dos windows-nt)) - "[ \t\"<>|?*^&=]" - "[ \t\n!\"#$&'()*;<=>?[\\^`{|~]") - "Characters that must be quoted when used in a shell command line. -More precisely, a [...] regexp to match any one such character." +(defcustom emerge-metachars nil + "Obsolete, emerge now uses `shell-quote-argument'." :type 'regexp :group 'emerge) - -;; Quote metacharacters (using \) when executing a diff/diff3 command. -(defun emerge-protect-metachars (s) - (if (memq system-type '(ms-dos windows-nt)) - (shell-quote-argument s) - (let ((limit 0)) - (while (string-match emerge-metachars s limit) - (setq s (concat (substring s 0 (match-beginning 0)) - "\\" - (substring s (match-beginning 0)))) - (setq limit (1+ (match-end 0))))) - s)) +(make-obsolete-variable 'emerge-metachars nil "25.2") (provide 'emerge) -- 2.8.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 06 10:46:56 2016 Received: (at 6136) by debbugs.gnu.org; 6 Aug 2016 14:46:56 +0000 Received: from localhost ([127.0.0.1]:58072 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bW2sK-0008SH-2U for submit@debbugs.gnu.org; Sat, 06 Aug 2016 10:46:56 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59337) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bW2sI-0008S4-T9 for 6136@debbugs.gnu.org; Sat, 06 Aug 2016 10:46:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bW2sA-0007wb-I4 for 6136@debbugs.gnu.org; Sat, 06 Aug 2016 10:46:49 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=BAYES_40,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:35926) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bW2sA-0007wX-Ei; Sat, 06 Aug 2016 10:46:46 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:2237 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bW2s7-0004U0-Fm; Sat, 06 Aug 2016 10:46:45 -0400 Date: Sat, 06 Aug 2016 17:46:36 +0300 Message-Id: <83invej6pf.fsf@gnu.org> From: Eli Zaretskii To: npostavs@users.sourceforge.net In-reply-to: <87zioq56vm.fsf@users.sourceforge.net> (npostavs@users.sourceforge.net) Subject: Re: bug#6136: Emerge doesn't handle file names with spaces on MS Windows References: <838w7uqvn2.fsf@gnu.org> <87zioq56vm.fsf@users.sourceforge.net> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -6.3 (------) X-Debbugs-Envelope-To: 6136 Cc: 6136@debbugs.gnu.org, joakim.harsman@gmail.com 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: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.3 (------) > From: npostavs@users.sourceforge.net > Cc: Joakim Hårsman , > 6136@debbugs.gnu.org > Date: Sat, 06 Aug 2016 10:06:37 -0400 > > Eli Zaretskii writes: > > > I think emerge-protect-metachars should simply use > > shell-quote-argument, on all platforms. Then it won't need to > > distinguish between the different flavors, and it won't need to know > > which characters need protection, something that is shell-dependent > > and thus tricky even on Unix. > > But the non-Windows case still uses emerge-metachars. Should we make it > same on all platforms: Yes, I think so. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 06 16:16:48 2016 Received: (at control) by debbugs.gnu.org; 6 Aug 2016 20:16:48 +0000 Received: from localhost ([127.0.0.1]:58181 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bW81X-0000wz-SN for submit@debbugs.gnu.org; Sat, 06 Aug 2016 16:16:48 -0400 Received: from mail-io0-f182.google.com ([209.85.223.182]:34466) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bW81W-0000wm-3W for control@debbugs.gnu.org; Sat, 06 Aug 2016 16:16:46 -0400 Received: by mail-io0-f182.google.com with SMTP id q83so328524669iod.1 for ; Sat, 06 Aug 2016 13:16:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:mime-version; bh=WEY27MAFbS1xFJ/3KRcVb/2jTqWuFFXIn1xEcZXdZYg=; b=Dk1ueiJlOgZjYiPTYjqShUpDDewWxM7SgFwanYH7/ESlnEhdn/X7PlkFFlvctE8R5r te13HXVVAszKLz0Cg1vyQcata2dsv8jq+yh3Y9ymMAqLDKw9Ot1ZPx+MIQLBM883acRO BWkz7l42J5VZY8FagFy1ZqfJbTNbmIaXk0r+zYjvrxjPKwyoLcoqqNaYa8cai4VrAko0 rP1Pepeu+KSZ3roxE108mT7z/NWbDqIB16vMCGlmR9rdHnnbtUFCxwk2T0elSIsIlHR0 ujE/tsvMd1fNT6G+4y+JUAYRHCXvvgqNsaCS66JOS0ItIcwAwUNSkUbFtM4EtOcJqqaa SWIw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:subject:date:message-id :mime-version; bh=WEY27MAFbS1xFJ/3KRcVb/2jTqWuFFXIn1xEcZXdZYg=; b=BcspZ1NZzRvSMIYq0k7hGXcrPfnxldCdwCyH12+2vqEGxIRr+VGvvH2LmR26FR6COQ Dy0ie6I8bjhvK6ZnNzZzgYHqt/GxS8exM16UfbnvRj2ezolWkuokZTiJuB4I5v0huylm TULG0uMY4j8Sk1cib/H0QnUqzOlIU/5lFsga5HmPO3j6KygTo6Q9+APrgo+0PIcVtBD3 kGhLKHzCygGtXoDjgxKvJxV2/ZJn/pyFO1DPVytNUvd/5ir3hWCaGNepUpwiyPVHv6Ln yUJAO5ueROLp9PC+jws0Efq1Uhgjzd5R8pVTjJM8DBkwvl9axn7K8+hsvRIF/zf5VtqQ 1Bfw== X-Gm-Message-State: AEkooutg2/SqkNJobGvGaTYoeWhLBIqfm0VLSoNbCLz/zFSTtKecbSrAlVHuCg5o4WmHwQ== X-Received: by 10.107.148.74 with SMTP id w71mr97664450iod.47.1470514600521; Sat, 06 Aug 2016 13:16:40 -0700 (PDT) Received: from zony (206-188-64-44.cpe.distributel.net. [206.188.64.44]) by smtp.googlemail.com with ESMTPSA id w199sm6686654ita.7.2016.08.06.13.16.39 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 06 Aug 2016 13:16:40 -0700 (PDT) From: npostavs@users.sourceforge.net To: control@debbugs.gnu.org Subject: control message for some bugs fixes Date: Sat, 06 Aug 2016 16:16:47 -0400 Message-ID: <87popl64b4.fsf@users.sourceforge.net> MIME-Version: 1.0 Content-Type: text/plain 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: -0.7 (/) # "Make sh-mode always use p-s-lookup-properties" close 4920 25.2 # "Fix cl-assert with atomp FORM, non-nil SHOW-ARGS" close 18587 25.2 # "Don't delete selection after indent-rigidly" close 20408 25.2 # "Fix byte-compile of interactive closures" close 24122 25.2 # "Error if --eval arg has text beyond 1 expression" close 23159 25.2 # "Fix quoted lambda warning from lexical-let" close 11357 25.2 # "Make emerge always use shell-quote-argument" close 6136 25.2 quit From unknown Sun Jun 22 11:39:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 04 Sep 2016 11:24:03 +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