From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "=?utf-8?Q?Fabi=C3=A1n?= Ezequiel Gallina" Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 8b7e2c4: python.el: Fix warnings on looking-back calls missing LIMIT Date: Mon, 11 May 2015 00:05:52 -0300 Message-ID: <87fv73vmnj.fsf@gnu.org> References: <20150430001022.10937.48609@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1431320586 9640 80.91.229.3 (11 May 2015 05:03:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 11 May 2015 05:03:06 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 11 07:03:05 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Yrfrq-0008DU-Cf for ged-emacs-devel@m.gmane.org; Mon, 11 May 2015 07:03:02 +0200 Original-Received: from localhost ([::1]:35447 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yrfrp-0000sR-N6 for ged-emacs-devel@m.gmane.org; Mon, 11 May 2015 01:03:01 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33714) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yre3D-00070q-Rj for emacs-devel@gnu.org; Sun, 10 May 2015 23:06:40 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yre37-0003eF-Nl for emacs-devel@gnu.org; Sun, 10 May 2015 23:06:39 -0400 Original-Received: from mail-qc0-x22f.google.com ([2607:f8b0:400d:c01::22f]:34988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yre37-0003e9-JK for emacs-devel@gnu.org; Sun, 10 May 2015 23:06:33 -0400 Original-Received: by qcbgu10 with SMTP id gu10so62953676qcb.2 for ; Sun, 10 May 2015 20:06:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type:content-transfer-encoding; bh=3tgIqtB0UxWlk743bicI1f9UZGfK9btfAmC5jRvQ8TA=; b=B5En9q/MjJsj+7FxQo5WYiRlikwo4Q/nGb12JsgaFgWfh8646yTgWxn+TvKjjekNWt Lhv0ofiknvr+mfUEFeRF4XPbz0UzcHiRzWQ1UNWu9RC1LNwCRccPL2xHy3btl8uJHpT6 j/v2XcakIPv9Q04Zq7V7T3ECgOXxOVs7rbP1N2PFIHpdE+yLgo8Z1Zil4Ke26GXS9gZX AmMDoizI2atrINeobFmUWMClcoIwc4rP+vnviwE2+cY/J3KJksmwr6Qmeg77vbltUxvl ZVhI4rn6C5qjzpZ3Hq8D6UU6uUq4xXg3rdWKHFznIpFVutHd+YSRPiMUQg1QlR0+Wm/7 rPLg== X-Received: by 10.55.22.3 with SMTP id g3mr17819462qkh.54.1431313592526; Sun, 10 May 2015 20:06:32 -0700 (PDT) Original-Received: from localhost ([190.246.172.180]) by mx.google.com with ESMTPSA id 28sm9531887qkw.13.2015.05.10.20.06.30 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 10 May 2015 20:06:31 -0700 (PDT) X-Google-Original-From: fgallina@gnu.org (=?utf-8?Q?Fabi=C3=A1n?= Ezequiel Gallina) In-Reply-To: (Stefan Monnier's message of "Thu, 30 Apr 2015 02:41:15 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c01::22f X-Mailman-Approved-At: Mon, 11 May 2015 01:02:59 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:186393 Archived-At: Stefan Monnier writes: > > So, here's the question: is `point-min' really the best we can do here? > Hola Stefan! No it's not, the last comint prompt start pos should be better. Pushed this in e35bf57. Thanks for raising the question :) Fabi=C3=A1n.