GNU logs - #17373, boring messages


Message sent to bug-gnu-emacs@HIDDEN:


X-Loop: help-debbugs@HIDDEN
Subject: bug#17373: 24.3.50; match data is incorrect if there are too many groups
Resent-From: Nicolas Richard <theonewiththeevillook@HIDDEN>
Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
Resent-CC: bug-gnu-emacs@HIDDEN
Resent-Date: Tue, 29 Apr 2014 19:20:02 +0000
Resent-Message-ID: <handler.17373.B.139879918030326 <at> debbugs.gnu.org>
Resent-Sender: help-debbugs@HIDDEN
X-GNU-PR-Message: report 17373
X-GNU-PR-Package: emacs
X-GNU-PR-Keywords: 
To: 17373 <at> debbugs.gnu.org
X-Debbugs-Original-To: bug-gnu-emacs@HIDDEN
Received: via spool by submit <at> debbugs.gnu.org id=B.139879918030326
          (code B ref -1); Tue, 29 Apr 2014 19:20:02 +0000
Received: (at submit) by debbugs.gnu.org; 29 Apr 2014 19:19:40 +0000
Received: from localhost ([127.0.0.1]:45404 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.80)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1WfDZ6-0007t3-5r
	for submit <at> debbugs.gnu.org; Tue, 29 Apr 2014 15:19:40 -0400
Received: from eggs.gnu.org ([208.118.235.92]:47347)
 by debbugs.gnu.org with esmtp (Exim 4.80)
 (envelope-from <theonewiththeevillook@HIDDEN>) id 1WfDZ4-0007sr-0p
 for submit <at> debbugs.gnu.org; Tue, 29 Apr 2014 15:19:38 -0400
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
 (envelope-from <theonewiththeevillook@HIDDEN>) id 1WfDYr-0004NW-By
 for submit <at> debbugs.gnu.org; Tue, 29 Apr 2014 15:19:32 -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.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM
 autolearn=disabled version=3.3.2
Received: from lists.gnu.org ([2001:4830:134:3::11]:52629)
 by eggs.gnu.org with esmtp (Exim 4.71)
 (envelope-from <theonewiththeevillook@HIDDEN>) id 1WfDYr-0004NS-9s
 for submit <at> debbugs.gnu.org; Tue, 29 Apr 2014 15:19:25 -0400
Received: from eggs.gnu.org ([2001:4830:134:3::10]:48992)
 by lists.gnu.org with esmtp (Exim 4.71)
 (envelope-from <theonewiththeevillook@HIDDEN>) id 1WfDYl-0006RG-1y
 for bug-gnu-emacs@HIDDEN; Tue, 29 Apr 2014 15:19:25 -0400
Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)
 (envelope-from <theonewiththeevillook@HIDDEN>) id 1WfDYe-0004Jq-PP
 for bug-gnu-emacs@HIDDEN; Tue, 29 Apr 2014 15:19:18 -0400
Received: from mailrelay006.isp.belgacom.be ([195.238.6.172]:55562)
 by eggs.gnu.org with esmtp (Exim 4.71)
 (envelope-from <theonewiththeevillook@HIDDEN>) id 1WfDYe-0004Jj-GB
 for bug-gnu-emacs@HIDDEN; Tue, 29 Apr 2014 15:19:12 -0400
X-Belgacom-Dynamic: yes
Received: from 41.233-178-91.adsl-dyn.isp.belgacom.be (HELO LDLC-portable)
 ([91.178.233.41])
 by relay.skynet.be with ESMTP; 29 Apr 2014 21:19:10 +0200
From: Nicolas Richard <theonewiththeevillook@HIDDEN>
Date: Tue, 29 Apr 2014 21:19:11 +0200
Message-ID: <87ppk0hrkg.fsf@HIDDEN>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)
MIME-Version: 1.0
Content-Type: text/plain
X-detected-operating-system: by eggs.gnu.org: Genre and OS details not
 recognized.
X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address
 (bad octet value).
X-Received-From: 2001:4830:134:3::11
X-Spam-Score: -5.0 (-----)
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -5.0 (-----)

Hi,

The following reports 2. Replace 255 by 254, and it'll report 512 as expected
#+BEGIN_SRC emacs-lisp
  (with-temp-buffer
    (insert "bar")
    (when
        (re-search-backward
         (concat
          (mapconcat (lambda (x) (format "\\(%s\\)" x)) (make-list 255 "foo") "\\|")
          "\\|"
          "\\(bar\\)")
         nil t)
      (length (match-data))))
#+END_SRC

Regexps with many groups is the kind of thing is used in AUCTeX, in
TeX-auto-parse-region. What auctex does in that function is construct a
big regexp out of a list of smaller ones (each small one is made into a
group) ; then when the big regexp matches it then tries to find out
which of the smaller regexps actually matched by checking which group is
non-nil.

In GNU Emacs 24.3.50.7 (i686-pc-linux-gnu, GTK+ Version 2.24.20)
 of 2014-04-10 on LDLC-portable
Windowing system distributor `The X.Org Foundation', version 11.0.11405000
System Description:	Ubuntu 13.10

Configured using:
 `configure 'CFLAGS=-g3 -O2''

Important settings:
  value of $LANG: fr_BE.UTF-8
  locale-coding-system: utf-8-unix

-- 
Nico.




Message sent:


Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
X-Mailer: MIME-tools 5.503 (Entity 5.503)
Content-Type: text/plain; charset=utf-8
X-Loop: help-debbugs@HIDDEN
From: help-debbugs@HIDDEN (GNU bug Tracking System)
To: Nicolas Richard <theonewiththeevillook@HIDDEN>
Subject: bug#17373: Acknowledgement (24.3.50; match data is incorrect if
 there are too many groups)
Message-ID: <handler.17373.B.139879918030326.ack <at> debbugs.gnu.org>
References: <87ppk0hrkg.fsf@HIDDEN>
X-Gnu-PR-Message: ack 17373
X-Gnu-PR-Package: emacs
Reply-To: 17373 <at> debbugs.gnu.org
Date: Tue, 29 Apr 2014 19:20:03 +0000

Thank you for filing a new bug report with debbugs.gnu.org.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
 bug-gnu-emacs@HIDDEN

If you wish to submit further information on this problem, please
send it to 17373 <at> debbugs.gnu.org.

Please do not send mail to help-debbugs@HIDDEN unless you wish
to report a problem with the Bug-tracking system.

--=20
17373: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D17373
GNU Bug Tracking System
Contact help-debbugs@HIDDEN with problems


Message sent to bug-gnu-emacs@HIDDEN:


X-Loop: help-debbugs@HIDDEN
Subject: bug#17373: 24.3.50; match data is incorrect if there are too many groups
References: <87ppk0hrkg.fsf@HIDDEN>
In-Reply-To: <87ppk0hrkg.fsf@HIDDEN>
Resent-From: Paul Eggert <eggert@HIDDEN>
Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
Resent-CC: bug-gnu-emacs@HIDDEN
Resent-Date: Mon, 19 May 2014 05:48:02 +0000
Resent-Message-ID: <handler.17373.B17373.140047847111800 <at> debbugs.gnu.org>
Resent-Sender: help-debbugs@HIDDEN
X-GNU-PR-Message: followup 17373
X-GNU-PR-Package: emacs
X-GNU-PR-Keywords: 
To: 17373 <at> debbugs.gnu.org
Received: via spool by 17373-submit <at> debbugs.gnu.org id=B17373.140047847111800
          (code B ref 17373); Mon, 19 May 2014 05:48:02 +0000
Received: (at 17373) by debbugs.gnu.org; 19 May 2014 05:47:51 +0000
Received: from localhost ([127.0.0.1]:52820 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.80)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1WmGQR-00034E-1Q
	for submit <at> debbugs.gnu.org; Mon, 19 May 2014 01:47:51 -0400
Received: from smtp.cs.ucla.edu ([131.179.128.62]:58369)
 by debbugs.gnu.org with esmtp (Exim 4.80)
 (envelope-from <eggert@HIDDEN>) id 1WmGQP-00033u-BV
 for 17373 <at> debbugs.gnu.org; Mon, 19 May 2014 01:47:50 -0400
Received: from localhost (localhost.localdomain [127.0.0.1])
 by smtp.cs.ucla.edu (Postfix) with ESMTP id 6C5CC39E807B
 for <17373 <at> debbugs.gnu.org>; Sun, 18 May 2014 22:47:42 -0700 (PDT)
X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu
Received: from smtp.cs.ucla.edu ([127.0.0.1])
 by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id V4Kr0ESndZvq for <17373 <at> debbugs.gnu.org>;
 Sun, 18 May 2014 22:47:33 -0700 (PDT)
Received: from [192.168.1.9] (pool-108-0-233-62.lsanca.fios.verizon.net
 [108.0.233.62])
 by smtp.cs.ucla.edu (Postfix) with ESMTPSA id ABB7139E801D
 for <17373 <at> debbugs.gnu.org>; Sun, 18 May 2014 22:47:33 -0700 (PDT)
Message-ID: <53799AF5.9090708@HIDDEN>
Date: Sun, 18 May 2014 22:47:33 -0700
From: Paul Eggert <eggert@HIDDEN>
Organization: UCLA Computer Science Department
User-Agent: Mozilla/5.0 (X11; Linux x86_64;
 rv:24.0) Gecko/20100101 Thunderbird/24.5.0
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Spam-Score: -3.0 (---)
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.0 (---)

Yes, unfortunately Emacs currently has a limit of at most 256 groups of 
match data: one for the entire pattern, and 255 for parenthesized 
subpatterns.  If you go over the limit, the excess matches are silently 
discarded.  I don't see this limitation documented anywhere; it should 
be.  Or better yet, the limitation should be removed.

The limitation is wired into the representation of the 'start_memory' 
code in compiled regular expressions: this code has a one-byte operand. 
  As far as I know, the limitation is specific to Emacs, and is not 
present in the Gnulib or glibc versions of the regexp matcher.




Message sent to bug-gnu-emacs@HIDDEN:


X-Loop: help-debbugs@HIDDEN
Subject: bug#17373: 24.3.50; match data is incorrect if there are too many groups
Resent-From: Drew Adams <drew.adams@HIDDEN>
Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
Resent-CC: bug-gnu-emacs@HIDDEN
Resent-Date: Mon, 19 May 2014 13:49:02 +0000
Resent-Message-ID: <handler.17373.B17373.14005073179385 <at> debbugs.gnu.org>
Resent-Sender: help-debbugs@HIDDEN
X-GNU-PR-Message: followup 17373
X-GNU-PR-Package: emacs
X-GNU-PR-Keywords: 
To: Paul Eggert <eggert@HIDDEN>, 17373 <at> debbugs.gnu.org
Received: via spool by 17373-submit <at> debbugs.gnu.org id=B17373.14005073179385
          (code B ref 17373); Mon, 19 May 2014 13:49:02 +0000
Received: (at 17373) by debbugs.gnu.org; 19 May 2014 13:48:37 +0000
Received: from localhost ([127.0.0.1]:52968 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.80)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1WmNvh-0002RJ-1G
	for submit <at> debbugs.gnu.org; Mon, 19 May 2014 09:48:37 -0400
Received: from userp1040.oracle.com ([156.151.31.81]:17978)
 by debbugs.gnu.org with esmtp (Exim 4.80)
 (envelope-from <drew.adams@HIDDEN>) id 1WmNve-0002R1-NZ
 for 17373 <at> debbugs.gnu.org; Mon, 19 May 2014 09:48:35 -0400
Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238])
 by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id
 s4JDmKc6031194
 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK);
 Mon, 19 May 2014 13:48:21 GMT
Received: from userz7022.oracle.com (userz7022.oracle.com [156.151.31.86])
 by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s4JDmI14001371
 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
 Mon, 19 May 2014 13:48:20 GMT
Received: from abhmp0014.oracle.com (abhmp0014.oracle.com [141.146.116.20])
 by userz7022.oracle.com (8.14.5+Sun/8.14.4) with ESMTP id s4JDmGIJ016865;
 Mon, 19 May 2014 13:48:17 GMT
MIME-Version: 1.0
Message-ID: <3dc9fa47-c3d8-40e2-b6e4-3f362a0c1b6e@default>
Date: Mon, 19 May 2014 06:48:16 -0700 (PDT)
From: Drew Adams <drew.adams@HIDDEN>
References: <87ppk0hrkg.fsf@HIDDEN> <53799AF5.9090708@HIDDEN>
In-Reply-To: <53799AF5.9090708@HIDDEN>
X-Priority: 3
X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8  (707110) [OL
 12.0.6691.5000 (x86)]
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable
X-Source-IP: acsinet22.oracle.com [141.146.126.238]
X-Spam-Score: -3.0 (---)
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <http://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <http://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <http://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.0 (---)

> Yes, unfortunately Emacs currently has a limit of at most 256 groups of
> match data: one for the entire pattern, and 255 for parenthesized
> subpatterns.  If you go over the limit, the excess matches are silently
> discarded.  I don't see this limitation documented anywhere; it should
> be.  Or better yet, the limitation should be removed.

Good to know.  +1, to documenting it, at least.




Message sent to bug-gnu-emacs@HIDDEN:


X-Loop: help-debbugs@HIDDEN
Subject: bug#17373: 24.3.50; match data is incorrect if there are too many groups
Resent-From: Marcin Borkowski <mbork@HIDDEN>
Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
Resent-CC: bug-gnu-emacs@HIDDEN
Resent-Date: Wed, 10 Feb 2016 17:12:02 +0000
Resent-Message-ID: <handler.17373.B17373.145512431918515 <at> debbugs.gnu.org>
Resent-Sender: help-debbugs@HIDDEN
X-GNU-PR-Message: followup 17373
X-GNU-PR-Package: emacs
X-GNU-PR-Keywords: 
To: 17373 <at> debbugs.gnu.org
Cc: Paul Eggert <eggert@HIDDEN>, Drew Adams <drew.adams@HIDDEN>
Received: via spool by 17373-submit <at> debbugs.gnu.org id=B17373.145512431918515
          (code B ref 17373); Wed, 10 Feb 2016 17:12:02 +0000
Received: (at 17373) by debbugs.gnu.org; 10 Feb 2016 17:11:59 +0000
Received: from localhost ([127.0.0.1]:35215 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1aTYJ5-0004oZ-JU
	for submit <at> debbugs.gnu.org; Wed, 10 Feb 2016 12:11:59 -0500
Received: from msg.wmi.amu.edu.pl ([150.254.78.50]:40634)
 by debbugs.gnu.org with esmtp (Exim 4.84)
 (envelope-from <mbork@HIDDEN>) id 1aTYJ3-0004oQ-Vi
 for 17373 <at> debbugs.gnu.org; Wed, 10 Feb 2016 12:11:58 -0500
Received: from localhost (localhost [127.0.0.1])
 by msg.wmi.amu.edu.pl (Postfix) with ESMTP id 41BA87C964;
 Wed, 10 Feb 2016 18:11:56 +0100 (CET)
Received: from msg.wmi.amu.edu.pl ([127.0.0.1])
 by localhost (msg.wmi.amu.edu.pl [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id usnFlpKAyCE8; Wed, 10 Feb 2016 18:11:56 +0100 (CET)
Received: from localhost (unknown [109.232.24.28])
 by msg.wmi.amu.edu.pl (Postfix) with ESMTPSA id E1F847C940;
 Wed, 10 Feb 2016 18:11:55 +0100 (CET)
From: Marcin Borkowski <mbork@HIDDEN>
References: <87ppk0hrkg.fsf@HIDDEN> <53799AF5.9090708@HIDDEN>
 <3dc9fa47-c3d8-40e2-b6e4-3f362a0c1b6e@default>
Date: Wed, 10 Feb 2016 18:11:54 +0100
In-Reply-To: <3dc9fa47-c3d8-40e2-b6e4-3f362a0c1b6e@default> (Drew Adams's
 message of "Mon, 19 May 2014 06:48:16 -0700 (PDT)")
Message-ID: <8737t0qylh.fsf@HIDDEN>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)
MIME-Version: 1.0
Content-Type: text/plain
X-Spam-Score: -0.2 (/)
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -0.2 (/)

On 2014-05-19, at 07:48, Drew Adams <drew.adams@HIDDEN> wrote:

>> Yes, unfortunately Emacs currently has a limit of at most 256 groups of
>> match data: one for the entire pattern, and 255 for parenthesized
>> subpatterns.  If you go over the limit, the excess matches are silently
>> discarded.  I don't see this limitation documented anywhere; it should
>> be.  Or better yet, the limitation should be removed.
>
> Good to know.  +1, to documenting it, at least.

I can write a patch to the manual, but I'm a bit afraid that if this
gets documented, the limit will stay there forever.  Is there a chance
of someone fluent in C to fix this?

(Incidentally, I have one package of mine where this limit could strike,
too.)

Best,

--
Marcin Borkowski




Message received at control <at> debbugs.gnu.org:


Received: (at control) by debbugs.gnu.org; 4 Jun 2016 22:47:44 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Jun 04 18:47:44 2016
Received: from localhost ([127.0.0.1]:54708 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1b9KM4-0000cc-1U
	for submit <at> debbugs.gnu.org; Sat, 04 Jun 2016 18:47:44 -0400
Received: from mail-oi0-f42.google.com ([209.85.218.42]:35634)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <npostavs@HIDDEN>) id 1b9KM3-0000cP-9R
 for control <at> debbugs.gnu.org; Sat, 04 Jun 2016 18:47:43 -0400
Received: by mail-oi0-f42.google.com with SMTP id w184so177259050oiw.2
 for <control <at> debbugs.gnu.org>; Sat, 04 Jun 2016 15:47:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:sender:from:date:message-id:subject:to;
 bh=dRXGjMix62ildB61t15XhkVbDV0QSrNHo3Mqqkt0YeY=;
 b=NGzqL6nKdZm60KSa4NlkBjybqyxYsUrxZPmeWukBmUuZTAQDgzZXyILQPU3n8PP85M
 3SQ3BO24GVRx09bt1Mbq4WaDuJjptRMoAif4rsJ372POf8tz3gh9ZseWWBcWWMwaaQji
 V2VurfS3QGEStpYJaB8tE767oNF/H3z4D9NyWvs9UlW63QUdMPdx0Zgbk3TxTeVqw3zz
 +Tru36QUkrdb1kOgykK/QT8OjVEtTVnJQkANRqWXvT5x4/tLNapzxYZeiWB8PUu5w2Qd
 crSepjF31LzeCA6Z2yOvX1UuCRP/jH3vBUJgVAuhGA1JtT7fDge2lfTDWAazIjtcXmH9
 n3Eg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:mime-version:sender:from:date:message-id:subject
 :to; bh=dRXGjMix62ildB61t15XhkVbDV0QSrNHo3Mqqkt0YeY=;
 b=T77EQcGth3Q6kfbWJbkeU/R1TcyX+5h+/YtSsdvyfKHrtpByt61Dj0zTH86ADwNIEo
 JVSxeeHwMP2A3m6aoe8Mswk0x9vy2ADfVuJsYBJkjPpyl49JIFZfz4riR3in4UczvQP0
 q2a9ywxXp+QHA/2fovsOyg3YAyMk1gdqOokGrwczBWqKkGVTdjvgDkneDpPe0ChEtjJw
 1z+JNhspIL0VYoqxxoAmLdqDerm5kOzPn4TwXrL16vZnCefRaewVgH/3Og4Pqk9U/Knx
 tcgnHwQxqsZjL+CrYqck40BxetuTjBzmNxegbUIGmH3W5xZ0RUt424RT5sY4LZpkxCmd
 JDJA==
X-Gm-Message-State: ALyK8tI3ZNsx/sQefKJ0o6lBGMit+P26R9UDFYYeOwsGD5Q0FREdz21m3LHcOhYLFeQ3X/5QTeJzXJPdC9iuVQ==
X-Received: by 10.157.13.167 with SMTP id 36mr5575619ots.134.1465080457725;
 Sat, 04 Jun 2016 15:47:37 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.157.5.168 with HTTP; Sat, 4 Jun 2016 15:47:37 -0700 (PDT)
From: Noam Postavsky <npostavs@HIDDEN>
Date: Sat, 4 Jun 2016 18:47:37 -0400
X-Google-Sender-Auth: Scza9X3iYl5mju4xGGVYh3dQaOI
Message-ID: <CAM-tV-_ByAzv-t4tXkkCOXj2-mNYRNwcA0gNww52tKFoaRCF5w@HIDDEN>
Subject: 24.3.50; match data is incorrect if there are too many groups
To: control <at> debbugs.gnu.org
Content-Type: text/plain; charset=UTF-8
X-Spam-Score: -0.5 (/)
X-Debbugs-Envelope-To: control
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -0.5 (/)

found 17373 25.0.94
tag + 17373 confirmed
severity 17373 minor
quit




Message received at control <at> debbugs.gnu.org:


Received: (at control) by debbugs.gnu.org; 4 Jun 2016 22:47:44 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Jun 04 18:47:44 2016
Received: from localhost ([127.0.0.1]:54708 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1b9KM4-0000cc-1U
	for submit <at> debbugs.gnu.org; Sat, 04 Jun 2016 18:47:44 -0400
Received: from mail-oi0-f42.google.com ([209.85.218.42]:35634)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <npostavs@HIDDEN>) id 1b9KM3-0000cP-9R
 for control <at> debbugs.gnu.org; Sat, 04 Jun 2016 18:47:43 -0400
Received: by mail-oi0-f42.google.com with SMTP id w184so177259050oiw.2
 for <control <at> debbugs.gnu.org>; Sat, 04 Jun 2016 15:47:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:sender:from:date:message-id:subject:to;
 bh=dRXGjMix62ildB61t15XhkVbDV0QSrNHo3Mqqkt0YeY=;
 b=NGzqL6nKdZm60KSa4NlkBjybqyxYsUrxZPmeWukBmUuZTAQDgzZXyILQPU3n8PP85M
 3SQ3BO24GVRx09bt1Mbq4WaDuJjptRMoAif4rsJ372POf8tz3gh9ZseWWBcWWMwaaQji
 V2VurfS3QGEStpYJaB8tE767oNF/H3z4D9NyWvs9UlW63QUdMPdx0Zgbk3TxTeVqw3zz
 +Tru36QUkrdb1kOgykK/QT8OjVEtTVnJQkANRqWXvT5x4/tLNapzxYZeiWB8PUu5w2Qd
 crSepjF31LzeCA6Z2yOvX1UuCRP/jH3vBUJgVAuhGA1JtT7fDge2lfTDWAazIjtcXmH9
 n3Eg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:mime-version:sender:from:date:message-id:subject
 :to; bh=dRXGjMix62ildB61t15XhkVbDV0QSrNHo3Mqqkt0YeY=;
 b=T77EQcGth3Q6kfbWJbkeU/R1TcyX+5h+/YtSsdvyfKHrtpByt61Dj0zTH86ADwNIEo
 JVSxeeHwMP2A3m6aoe8Mswk0x9vy2ADfVuJsYBJkjPpyl49JIFZfz4riR3in4UczvQP0
 q2a9ywxXp+QHA/2fovsOyg3YAyMk1gdqOokGrwczBWqKkGVTdjvgDkneDpPe0ChEtjJw
 1z+JNhspIL0VYoqxxoAmLdqDerm5kOzPn4TwXrL16vZnCefRaewVgH/3Og4Pqk9U/Knx
 tcgnHwQxqsZjL+CrYqck40BxetuTjBzmNxegbUIGmH3W5xZ0RUt424RT5sY4LZpkxCmd
 JDJA==
X-Gm-Message-State: ALyK8tI3ZNsx/sQefKJ0o6lBGMit+P26R9UDFYYeOwsGD5Q0FREdz21m3LHcOhYLFeQ3X/5QTeJzXJPdC9iuVQ==
X-Received: by 10.157.13.167 with SMTP id 36mr5575619ots.134.1465080457725;
 Sat, 04 Jun 2016 15:47:37 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.157.5.168 with HTTP; Sat, 4 Jun 2016 15:47:37 -0700 (PDT)
From: Noam Postavsky <npostavs@HIDDEN>
Date: Sat, 4 Jun 2016 18:47:37 -0400
X-Google-Sender-Auth: Scza9X3iYl5mju4xGGVYh3dQaOI
Message-ID: <CAM-tV-_ByAzv-t4tXkkCOXj2-mNYRNwcA0gNww52tKFoaRCF5w@HIDDEN>
Subject: 24.3.50; match data is incorrect if there are too many groups
To: control <at> debbugs.gnu.org
Content-Type: text/plain; charset=UTF-8
X-Spam-Score: -0.5 (/)
X-Debbugs-Envelope-To: control
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -0.5 (/)

found 17373 25.0.94
tag + 17373 confirmed
severity 17373 minor
quit




Message received at control <at> debbugs.gnu.org:


Received: (at control) by debbugs.gnu.org; 4 Jun 2016 22:50:42 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Sat Jun 04 18:50:42 2016
Received: from localhost ([127.0.0.1]:54713 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1b9KOw-0000hE-Fi
	for submit <at> debbugs.gnu.org; Sat, 04 Jun 2016 18:50:42 -0400
Received: from mail-oi0-f41.google.com ([209.85.218.41]:34320)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <npostavs@HIDDEN>) id 1b9KOs-0000gx-E9
 for control <at> debbugs.gnu.org; Sat, 04 Jun 2016 18:50:41 -0400
Received: by mail-oi0-f41.google.com with SMTP id e72so177484722oib.1
 for <control <at> debbugs.gnu.org>; Sat, 04 Jun 2016 15:50:38 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:sender:in-reply-to:references:from:date:message-id
 :subject:to; bh=KlSHgvCJxMPU3Rynmg2scrmQ9EqOp7LAM1+iIXwOOfc=;
 b=r+2tgyljpTSdwAR4f5irGXzcYggES29GD8bROjlZBAlreZaLdpxhFCc7N6lYXtNOcz
 ZepWDUd3e2rf8sN1FYzgKMEISx8glVpuuI4xbgzStZH4CuAcD1yPyC3eON9fJNMBxSEq
 mMYJo3xOvusfzJjJDQqQODoMR6+csLgvgLomJvw1tV5nnkSgWcO7Q98QQKMzNmU4c4xc
 DR3t/0Y4utF1zEKScHCU2q4tvJEz7zlm31zJGSemTy6ApmlsTSOMyJplDyyqgipf4NVr
 On0vaF+/XOGmy75hgMnqnSXrjo49ZRh4P///OY8qBPhdkD8wdozGvxu0PsQlF3nBrCoj
 te4w==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:mime-version:sender:in-reply-to:references:from
 :date:message-id:subject:to;
 bh=KlSHgvCJxMPU3Rynmg2scrmQ9EqOp7LAM1+iIXwOOfc=;
 b=cmmAKOQVP/al4E73JRaJGELC3DAgNeRzJbd/dYFlaryH/n2yL6K2UBUEmYXiMly4RR
 VwbGSYCv265kVRxZP4PzRfXmmcO5j+PLbf4eTtPBRkBZDWoKVxbyfJ+/kGcplpOloLmf
 7nDybWLA9o87spNWIgEoBIyjYq7CPNZwgscQ+jd0YB5aJw69z3xr/xM12/Va2n+u8DkD
 cLZO1oOQxe6tzFiFu4SItqXIRCR8+/VmoDw3ZNssyv17gLTeO9DErowW+Y2QO3kesmMy
 Zhn5nsXUSxSHtOQpRR+NYILoL+qYGz7Aixi90EUlCIvRwxlDsEtljueJR6idn7dJxdY9
 77wA==
X-Gm-Message-State: ALyK8tIlgK8q8pwXE7QMqU/i0mhumrWsC0eL1iZrgN94QsMqgKCii+6JDe/UZ0UMmOVvlMgzwUkvwsjY9IwaMA==
X-Received: by 10.157.38.185 with SMTP id l54mr5672283otb.112.1465080633017;
 Sat, 04 Jun 2016 15:50:33 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.157.5.168 with HTTP; Sat, 4 Jun 2016 15:50:32 -0700 (PDT)
In-Reply-To: <handler.s.C.14650804642398.transcript <at> debbugs.gnu.org>
References: <CAM-tV-_ByAzv-t4tXkkCOXj2-mNYRNwcA0gNww52tKFoaRCF5w@HIDDEN>
 <handler.s.C.14650804642398.transcript <at> debbugs.gnu.org>
From: Noam Postavsky <npostavs@HIDDEN>
Date: Sat, 4 Jun 2016 18:50:32 -0400
X-Google-Sender-Auth: ZxzyNwz52K1eBM6MLErugXcd1fA
Message-ID: <CAM-tV-8ddc=Oh1UAGMkQLqMTQiGQFvhEL24VaXy91xm_-yL88g@HIDDEN>
Subject: Re: Processed (with 1 errors): 24.3.50; match data is incorrect if
 there are too many groups
To: GNU bug tracker automated control server <control <at> debbugs.gnu.org>
Content-Type: text/plain; charset=UTF-8
X-Spam-Score: -0.5 (/)
X-Debbugs-Envelope-To: control
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -0.5 (/)

# On Sat, Jun 4, 2016 at 6:48 PM, GNU bug tracker automated control
server <control <at> debbugs.gnu.org> wrote:
# >> tag + 17373 confirmed
# > Unknown command or malformed arguments to command.
tag 17373 + confirmed
quit





Last modified: Mon, 25 Nov 2019 12:00:02 UTC

GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997 nCipher Corporation Ltd, 1994-97 Ian Jackson.