From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Eli Zaretskii" Newsgroups: gmane.emacs.help Subject: Re: what is the point of point-min? Date: Sun, 07 Sep 2003 19:28:47 +0200 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <2110-Sun07Sep2003192846+0300-eliz@elta.co.il> References: <3F4E2B31.5070904@yahoo.com> <1a61f7e5.0308290444.10893c35@posting.google.com> <1g0r73z.10p9ug11heij1mN%jjanney@xmission.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1062952295 20393 80.91.224.253 (7 Sep 2003 16:31:35 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 7 Sep 2003 16:31:35 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Sep 07 18:31:33 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19w2Rp-00055z-00 for ; Sun, 07 Sep 2003 18:31:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.22) id 19w2Rh-0003qm-V9 for geh-help-gnu-emacs@m.gmane.org; Sun, 07 Sep 2003 12:31:25 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.22) id 19w2Q9-0003qd-NH for help-gnu-emacs@gnu.org; Sun, 07 Sep 2003 12:29:49 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.22) id 19w2Q8-0003qL-9v for help-gnu-emacs@gnu.org; Sun, 07 Sep 2003 12:29:48 -0400 Original-Received: from [192.114.186.23] (helo=aragorn.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.22) id 19w2Q7-0003q9-T1 for help-gnu-emacs@gnu.org; Sun, 07 Sep 2003 12:29:48 -0400 Original-Received: from zaretski (pns03-200-99.inter.net.il [80.230.200.99]) by aragorn.inter.net.il (Mirapoint Messaging Server MOS 3.3.5-GR) with ESMTP id BJY45075; Sun, 7 Sep 2003 19:29:43 +0300 (IDT) Original-To: help-gnu-emacs@gnu.org X-Mailer: emacs 21.3.50 (via feedmail 8 I) and Blat ver 1.8.9 In-reply-to: <1g0r73z.10p9ug11heij1mN%jjanney@xmission.com> X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:12338 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:12338 > From: jjanney@xmission.com (Jim Janney) > Newsgroups: gnu.emacs.help > Date: Sun, 7 Sep 2003 00:50:01 -0600 > > > > if ((PT < XFASTINT (m)) == beginningp) > > m = make_number (PT); > > return m; > > } > > Note that the description of BEGINNINGP in the comment is wrong: the way > the code is written, it only returns the start when beginningp is 1. Thanks for pointing this out, I've fixed the code to deliver as promised by the comment.