From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: Emacs 23.4 release candidate 1 Date: Tue, 24 Jan 2012 16:18:31 +0900 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1327389530 16381 80.91.229.12 (24 Jan 2012 07:18:50 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 24 Jan 2012 07:18:50 +0000 (UTC) Cc: emacs-devel@gnu.org To: "HIROSHI OOTA" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 24 08:18:46 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RpaeT-00059c-P1 for ged-emacs-devel@m.gmane.org; Tue, 24 Jan 2012 08:18:45 +0100 Original-Received: from localhost ([::1]:35044 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpaeT-0006Vs-A9 for ged-emacs-devel@m.gmane.org; Tue, 24 Jan 2012 02:18:45 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:50603) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpaeQ-0006Vb-CE for emacs-devel@gnu.org; Tue, 24 Jan 2012 02:18:43 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpaeO-0005a9-3g for emacs-devel@gnu.org; Tue, 24 Jan 2012 02:18:42 -0500 Original-Received: from mx1.aist.go.jp ([150.29.246.133]:53520) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpaeN-0005Zh-J3 for emacs-devel@gnu.org; Tue, 24 Jan 2012 02:18:40 -0500 Original-Received: from rqsmtp1.aist.go.jp (rqsmtp1.aist.go.jp [150.29.254.115]) by mx1.aist.go.jp with ESMTP id q0O7IWJX006028; Tue, 24 Jan 2012 16:18:32 +0900 (JST) env-from (handa@m17n.org) Original-Received: from smtp3.aist.go.jp by rqsmtp1.aist.go.jp with ESMTP id q0O7IWsv014762; Tue, 24 Jan 2012 16:18:32 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp3.aist.go.jp with ESMTP id q0O7IVO1002599; Tue, 24 Jan 2012 16:18:31 +0900 (JST) env-from (handa@m17n.org) In-Reply-To: (nil@mad.dog.cx) X-detected-operating-system: by eggs.gnu.org: Solaris 9 X-Received-From: 150.29.246.133 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:147867 Archived-At: In article , "HIROSHI OOTA" writes: > On Fri, 20 Jan 2012 00:53:41 +0900, Chong Yidong wrote: > > The release candidate for Emacs 23.4 is now available for download at: > > > > ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.4rc1.tar.gz > > > > Note that although the version number has been bumped to 23.4 in the > > tarball and in the emacs-23 branch, I have not tagged the release yet, > > in case there are last minute changes. > > > > If no serious problem surfaces in the next couple of days, I'll release > > this as Emacs 23.4. So please help give it as much testing as possible. > > Thank you. > the ecoding.c:encode_designation_at_bol shuld return EMACS_INT. > -- > Hiroshi Oota I agree with the change. As my computer for Emacs hacking is begin repaired, it's difficult for me to commit it. Could someone please do it? --- Kenichi Handa handa@m17n.org > --- src/coding.c (revision 868) > +++ src/coding.c (working copy) > @@ -944,7 +948,7 @@ > static unsigned char *alloc_destination P_ ((struct coding_system *, > EMACS_INT, unsigned char *)); > static void setup_iso_safe_charsets P_ ((Lisp_Object)); > -static int encode_designation_at_bol P_ ((struct coding_system *, > +static EMACS_INT encode_designation_at_bol P_ ((struct coding_system *, > int *, int *, unsigned char *)); > static int detect_eol P_ ((const unsigned char *, > EMACS_INT, enum coding_category)); > @@ -4509,7 +4513,7 @@ > If the current block ends before any end-of-line, we may fail to > find all the necessary designations. */ > -static int > +static EMACS_INT > encode_designation_at_bol (coding, charbuf, charbuf_end, dst) > struct coding_system *coding; > int *charbuf, *charbuf_end;