From debbugs-submit-bounces@debbugs.gnu.org Mon May 10 10:51:51 2010 Received: (at submit) by debbugs.gnu.org; 10 May 2010 14:51:51 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBUKk-0005vJ-Sw for submit@debbugs.gnu.org; Mon, 10 May 2010 10:51:51 -0400 Received: from mx10.gnu.org ([199.232.76.166]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBUKi-0005vE-Ud for submit@debbugs.gnu.org; Mon, 10 May 2010 10:51:49 -0400 Received: from lists.gnu.org ([199.232.76.165]:53395) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1OBUKe-00031D-2W for submit@debbugs.gnu.org; Mon, 10 May 2010 10:51:44 -0400 Received: from [140.186.70.92] (port=60242 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OBUKY-0007eH-T4 for bug-gnu-emacs@gnu.org; Mon, 10 May 2010 10:51:43 -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 autolearn=unavailable version=3.3.1 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OBUKS-00028J-H5 for bug-gnu-emacs@gnu.org; Mon, 10 May 2010 10:51:38 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:57283) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBUKS-00027z-CE for bug-gnu-emacs@gnu.org; Mon, 10 May 2010 10:51:32 -0400 Received: by fxm9 with SMTP id 9so773394fxm.0 for ; Mon, 10 May 2010 07:51:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:from:date :message-id:subject:to:content-type; bh=y2bRoZuefgWbpQsk749baRVNCi0ZGdRFmpRCuA36vvk=; b=l27TlMZjqfZZFgSXKFltSZCWLuDX+Qc9+55cX+hxCU+vEvqypDjMNP87dSLXVqXH52 iRaGvdp5usQaTYo7mE96mkozDQaDrI9KJrS7JdBf8+HCsEcjJDQhkHSb2dHWw9saPHg5 MlToTYw4asaPHxTrqRMmQ9kF4bku7v9zNe7HE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=TthuDhHXQysdl6t12IVTfJCPh4N1REagcdNQkECXyvSeRVEieqjs8lQrYwUAy9FAUO MKJpsaPOyqp9aPegT6+ed2xwLC6msRciLyBhX+qNMvXDwXn8rqRooRxSSDlqhu3Qsn5D MjX0EUcKDPfTLovGqHtuZk9YMTj4ucaa1mHZQ= Received: by 10.239.155.134 with SMTP id i6mr360673hbc.1.1273503091207; Mon, 10 May 2010 07:51:31 -0700 (PDT) MIME-Version: 1.0 Received: by 10.239.164.81 with HTTP; Mon, 10 May 2010 07:51:11 -0700 (PDT) From: Lennart Borgman Date: Mon, 10 May 2010 16:51:11 +0200 Message-ID: Subject: narrow-to-defun fix when point is on function beginning To: Emacs Bugs Content-Type: text/plain; charset=UTF-8 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.5 (----) X-Debbugs-Envelope-To: submit 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: -4.6 (----) `beginning-of-defun' goes to previous function when point is on the first character of a function. This is not currently taken care of in `narrow-to-defun'. This patch fixes this: c:\emacs-lp\bld\emacs\emacsw32\lisp\emacs-lisp>bzr diff --old c:\emacs-lp\bld\emacs\trunk -p trunk/:patched/ lisp.el === modified file 'lisp/emacs-lisp/lisp.el' --- trunk/lisp/emacs-lisp/lisp.el 2010-04-27 17:57:32 +0000 +++ patched/lisp/emacs-lisp/lisp.el 2010-05-10 14:21:59 +0000 @@ -438,7 +438,20 @@ ;; Try first in this order for the sake of languages with nested ;; functions where several can end at the same place as with ;; the offside rule, e.g. Python. - (beginning-of-defun) + + ;; Finding the start of the function is a bit problematic since + ;; `beginning-of-defun' when we are on the first character of + ;; the function might go to the previous function. + ;; + ;; Therefor we first move one character forward and then call + ;; `beginning-of-defun'. However now we must check that we did + ;; not move into the next function. + (let ((here (point))) + (unless (eobp) (forward-char)) + (beginning-of-defun) + (when (< (point) here) + (goto-char here) + (beginning-of-defun))) (setq beg (point)) (end-of-defun) (setq end (point)) From debbugs-submit-bounces@debbugs.gnu.org Mon May 10 13:06:21 2010 Received: (at 6157) by debbugs.gnu.org; 10 May 2010 17:06:21 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBWQv-0007oP-0D for submit@debbugs.gnu.org; Mon, 10 May 2010 13:06:21 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.183] helo=ironport2-out.pppoe.ca) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OBWQs-0007o4-Ig for 6157@debbugs.gnu.org; Mon, 10 May 2010 13:06:19 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvsEAGjZ50tLd+Zs/2dsb2JhbACeIHK9L4UUBIwy X-IronPort-AV: E=Sophos;i="4.52,363,1270440000"; d="scan'208";a="63833020" Received: from 75-119-230-108.dsl.teksavvy.com (HELO pastel.home) ([75.119.230.108]) by ironport2-out.pppoe.ca with ESMTP; 10 May 2010 13:06:13 -0400 Received: by pastel.home (Postfix, from userid 20848) id 8AFBF8205; Mon, 10 May 2010 13:06:13 -0400 (EDT) From: Stefan Monnier To: Lennart Borgman Subject: Re: bug#6157: narrow-to-defun fix when point is on function beginning Message-ID: References: Date: Mon, 10 May 2010 13:06:13 -0400 In-Reply-To: (Lennart Borgman's message of "Mon, 10 May 2010 16:51:11 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -2.0 (--) X-Debbugs-Envelope-To: 6157 Cc: 6157@debbugs.gnu.org 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: -2.0 (--) > `beginning-of-defun' goes to previous function when point is on the > first character of a function. This is not currently taken care of in > `narrow-to-defun'. This patch fixes this: Looks good, thank you (tho I'd use (eolp) rather than (eobp), and I'd write "Therefore" rather than "Therefor"). Stefan From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 21 16:07:25 2011 Received: (at 6157) by debbugs.gnu.org; 21 Sep 2011 20:07:25 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6T4n-0004Tb-1Q for submit@debbugs.gnu.org; Wed, 21 Sep 2011 16:07:25 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6T4j-0004TN-Hx for 6157@debbugs.gnu.org; Wed, 21 Sep 2011 16:07:22 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1R6T4M-0005Vu-Iw; Wed, 21 Sep 2011 22:06:58 +0200 From: Lars Magne Ingebrigtsen To: Lennart Borgman Subject: Re: narrow-to-defun fix when point is on function beginning In-Reply-To: (Lennart Borgman's message of "Mon, 10 May 2010 16:51:11 +0200") Date: Wed, 21 Sep 2011 22:03:24 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) X-Now-Playing: Colder's _Heat_: "Tonight" MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1R6T4M-0005Vu-Iw X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1317240418.67907@IuQoIWfoHW9AHxbEF49h5A X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 6157 Cc: 6157@debbugs.gnu.org, Stefan Monnier 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: -2.6 (--) Lennart Borgman writes: > `beginning-of-defun' goes to previous function when point is on the > first character of a function. This is not currently taken care of in > `narrow-to-defun'. This patch fixes this: > > c:\emacs-lp\bld\emacs\emacsw32\lisp\emacs-lisp>bzr diff --old > c:\emacs-lp\bld\emacs\trunk -p trunk/:patched/ lisp.el > === modified file 'lisp/emacs-lisp/lisp.el' > --- trunk/lisp/emacs-lisp/lisp.el 2010-04-27 17:57:32 +0000 > +++ patched/lisp/emacs-lisp/lisp.el 2010-05-10 14:21:59 +0000 > @@ -438,7 +438,20 @@ > ;; Try first in this order for the sake of languages with nested > ;; functions where several can end at the same place as with > ;; the offside rule, e.g. Python. > - (beginning-of-defun) > + > + ;; Finding the start of the function is a bit problematic since > + ;; `beginning-of-defun' when we are on the first character of > + ;; the function might go to the previous function. > + ;; > + ;; Therefor we first move one character forward and then call > + ;; `beginning-of-defun'. However now we must check that we did > + ;; not move into the next function. > + (let ((here (point))) > + (unless (eobp) (forward-char)) > + (beginning-of-defun) > + (when (< (point) here) > + (goto-char here) > + (beginning-of-defun))) > (setq beg (point)) > (end-of-defun) > (setq end (point)) This patch was apparently approved by Stefan, but not applied, as far as I can tell. Did it turn out to not be correct after all? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 21 16:24:59 2011 Received: (at 6157) by debbugs.gnu.org; 21 Sep 2011 20:24:59 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6TLn-0005e5-7h for submit@debbugs.gnu.org; Wed, 21 Sep 2011 16:24:59 -0400 Received: from mail-fx0-f44.google.com ([209.85.161.44]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R6TLk-0005dx-DJ for 6157@debbugs.gnu.org; Wed, 21 Sep 2011 16:24:57 -0400 Received: by fxd18 with SMTP id 18so1903609fxd.3 for <6157@debbugs.gnu.org>; Wed, 21 Sep 2011 13:24:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=ZMvq0oPaRVAUtVXJAGnB7O40hW6xIFW+10Mn5vnkN4E=; b=Uv0/G2A3UaMJb3MVY5G3CVF82niKAclDoWHg+EtK2Jkv0+4Re3KnbIEiHCnM7DXsrK UIAMUNcZDYzIlDud9vXXj814uW/Mr4Hdga6Du4xEHwoyZDcLB5i3jgeST7lcXJAcpKly Ra18o/IkdlBgK6Q+zZfH7p+j19Vsyh1vl118Q= Received: by 10.223.8.2 with SMTP id f2mr1634220faf.23.1316636397276; Wed, 21 Sep 2011 13:19:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.152.20.229 with HTTP; Wed, 21 Sep 2011 13:19:37 -0700 (PDT) In-Reply-To: References: From: Lennart Borgman Date: Wed, 21 Sep 2011 22:19:37 +0200 Message-ID: Subject: Re: narrow-to-defun fix when point is on function beginning To: Lars Magne Ingebrigtsen Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -3.6 (---) X-Debbugs-Envelope-To: 6157 Cc: 6157@debbugs.gnu.org, Stefan Monnier 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: -3.6 (---) On Wed, Sep 21, 2011 at 22:03, Lars Magne Ingebrigtsen wro= te: > Lennart Borgman writes: > >> `beginning-of-defun' goes to previous function when point is on the >> first character of a function. This is not currently taken care of in >> `narrow-to-defun'. This patch fixes this: >> >> c:\emacs-lp\bld\emacs\emacsw32\lisp\emacs-lisp>bzr diff --old >> c:\emacs-lp\bld\emacs\trunk -p trunk/:patched/ lisp.el >> =3D=3D=3D modified file 'lisp/emacs-lisp/lisp.el' >> --- trunk/lisp/emacs-lisp/lisp.el =C2=A0 =C2=A0 2010-04-27 17:57:32 +000= 0 >> +++ patched/lisp/emacs-lisp/lisp.el =C2=A0 2010-05-10 14:21:59 +0000 >> @@ -438,7 +438,20 @@ >> =C2=A0 =C2=A0 =C2=A0 =C2=A0;; Try first in this order for the sake of la= nguages with nested >> =C2=A0 =C2=A0 =C2=A0 =C2=A0;; functions where several can end at the sam= e place as with >> =C2=A0 =C2=A0 =C2=A0 =C2=A0;; the offside rule, e.g. Python. >> - =C2=A0 =C2=A0 =C2=A0(beginning-of-defun) >> + >> + =C2=A0 =C2=A0 =C2=A0;; Finding the start of the function is a bit prob= lematic since >> + =C2=A0 =C2=A0 =C2=A0;; `beginning-of-defun' when we are on the first c= haracter of >> + =C2=A0 =C2=A0 =C2=A0;; the function might go to the previous function. >> + =C2=A0 =C2=A0 =C2=A0;; >> + =C2=A0 =C2=A0 =C2=A0;; Therefor we first move one character forward an= d then call >> + =C2=A0 =C2=A0 =C2=A0;; `beginning-of-defun'. =C2=A0However now we must= check that we did >> + =C2=A0 =C2=A0 =C2=A0;; not move into the next function. >> + =C2=A0 =C2=A0 =C2=A0(let ((here (point))) >> + =C2=A0 =C2=A0 =C2=A0 =C2=A0(unless (eobp) (forward-char)) >> + =C2=A0 =C2=A0 =C2=A0 =C2=A0(beginning-of-defun) >> + =C2=A0 =C2=A0 =C2=A0 =C2=A0(when (< (point) here) >> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(goto-char here) >> + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(beginning-of-defun))) >> =C2=A0 =C2=A0 =C2=A0 =C2=A0(setq beg (point)) >> =C2=A0 =C2=A0 =C2=A0 =C2=A0(end-of-defun) >> =C2=A0 =C2=A0 =C2=A0 =C2=A0(setq end (point)) > > This patch was apparently approved by Stefan, but not applied, as far as > I can tell. =C2=A0Did it turn out to not be correct after all? I think it was correct, but the problem is that I never submit anything to the repository. (Since I did not trust myself to make the submission in a correct way...) From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 10 22:12:55 2012 Received: (at 6157) by debbugs.gnu.org; 11 Apr 2012 02:12:55 +0000 Received: from localhost ([127.0.0.1]:49767 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHn3G-0001jK-W7 for submit@debbugs.gnu.org; Tue, 10 Apr 2012 22:12:55 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:41628) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHn3D-0001jB-WA for 6157@debbugs.gnu.org; Tue, 10 Apr 2012 22:12:53 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SHn22-0004Rl-Fu; Wed, 11 Apr 2012 04:11:38 +0200 From: Lars Magne Ingebrigtsen To: Lennart Borgman Subject: Re: bug#6157: narrow-to-defun fix when point is on function beginning References: X-Now-Playing: Digital Mystikz's _Return II Space_: "Return II Space" Date: Wed, 11 Apr 2012 04:11:37 +0200 In-Reply-To: (Lennart Borgman's message of "Wed, 21 Sep 2011 22:19:37 +0200") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1SHn22-0004Rl-Fu X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334715098.60043@LyLI6BVORxhJkqasgqaDSQ X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 6157 Cc: 6157@debbugs.gnu.org, Stefan Monnier X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 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: -1.9 (-) Lennart Borgman writes: > I think it was correct, but the problem is that I never submit > anything to the repository. (Since I did not trust myself to make the > submission in a correct way...) I've now applied it to the trunk. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 10 22:12:58 2012 Received: (at control) by debbugs.gnu.org; 11 Apr 2012 02:12:58 +0000 Received: from localhost ([127.0.0.1]:49769 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHn3K-0001jX-8A for submit@debbugs.gnu.org; Tue, 10 Apr 2012 22:12:58 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:41631) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHn3E-0001jD-Mi for control@debbugs.gnu.org; Tue, 10 Apr 2012 22:12:56 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SHn26-0004S1-MZ for control@debbugs.gnu.org; Wed, 11 Apr 2012 04:11:42 +0200 Date: Wed, 11 Apr 2012 04:11:42 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #6157 X-MailScanner-ID: 1SHn26-0004S1-MZ X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334715102.85794@1PA2ey5kA5bvTxRADjfFdA X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 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: -1.9 (-) tags 6157 fixed close 6157 24.2 From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 11 05:48:58 2012 Received: (at 6157) by debbugs.gnu.org; 11 Apr 2012 09:48:59 +0000 Received: from localhost ([127.0.0.1]:50375 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHuAY-0001e8-Sg for submit@debbugs.gnu.org; Wed, 11 Apr 2012 05:48:58 -0400 Received: from mail-lpp01m010-f44.google.com ([209.85.215.44]:62937) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHuAT-0001dx-7r for 6157@debbugs.gnu.org; Wed, 11 Apr 2012 05:48:53 -0400 Received: by lagj5 with SMTP id j5so496937lag.3 for <6157@debbugs.gnu.org>; Wed, 11 Apr 2012 02:47:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=VAy/vcZmycZ2Sh/eCJyhGhXn8/vfDrkEbtcewBgu+C0=; b=UYFmuyGAwFpcA/4wes1833cgkvpYi78/6xDkJv+Hs0DoRRIvZPIUESfJf+tYbCkYXm adwMKFGI2+IeLiX25dsHbwCG3u2qsvu5Go+POI+tp4HUtkFVWZTgiCsxOQWBdi0xnpWr OnAEWRfl+awy3aTPNTq4uRvER7blMWCnDfyP6vzc2uj149M70U9VsTFr6uXDDR9F2ORT gjIpNi2xNqn6KeYPCJeKFBkAqJ+ctjA2Tv/Y2oJ+LkWmd3CDmRnyGDhZEbiP7YVY6pak c+5nQmywuJ8GFOMQZKjYGzgLYAz0uR+AjhqvDPCmAIzlpkEm46Hm8lqhCOeykfmQkLa4 TwcA== Received: by 10.112.11.6 with SMTP id m6mr2619178lbb.24.1334137661820; Wed, 11 Apr 2012 02:47:41 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.74.232 with HTTP; Wed, 11 Apr 2012 02:47:10 -0700 (PDT) In-Reply-To: References: From: Lennart Borgman Date: Wed, 11 Apr 2012 11:47:10 +0200 Message-ID: Subject: Re: bug#6157: narrow-to-defun fix when point is on function beginning To: Lars Magne Ingebrigtsen Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 6157 Cc: 6157@debbugs.gnu.org, Stefan Monnier X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 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: -2.6 (--) On Wed, Apr 11, 2012 at 04:11, Lars Magne Ingebrigtsen wrote: > Lennart Borgman writes: > >> I think it was correct, but the problem is that I never submit >> anything to the repository. (Since I did not trust myself to make the >> submission in a correct way...) > > I've now applied it to the trunk. Thanks. From unknown Sat Aug 16 18:44:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 09 May 2012 11:24:04 +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