From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "HIROSHI OOTA" Newsgroups: gmane.emacs.devel Subject: Re: Emacs 23.4 release candidate 1 Date: Tue, 24 Jan 2012 10:46:53 +0900 Message-ID: References: <87sjjb4rju.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1327369630 5604 80.91.229.12 (24 Jan 2012 01:47:10 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 24 Jan 2012 01:47:10 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 24 02:47:07 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 1RpVTV-0006D6-TY for ged-emacs-devel@m.gmane.org; Tue, 24 Jan 2012 02:47:06 +0100 Original-Received: from localhost ([::1]:55230 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpVTV-0005ri-BW for ged-emacs-devel@m.gmane.org; Mon, 23 Jan 2012 20:47:05 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:53824) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpVTS-0005rS-BK for emacs-devel@gnu.org; Mon, 23 Jan 2012 20:47:03 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpVTR-0000sc-7V for emacs-devel@gnu.org; Mon, 23 Jan 2012 20:47:02 -0500 Original-Received: from msv5.zenno.net ([125.53.25.155]:51165) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RpVTQ-0000sO-Jt for emacs-devel@gnu.org; Mon, 23 Jan 2012 20:47:01 -0500 Original-Received: (qmail 32936 invoked from network); 24 Jan 2012 10:46:53 +0900 Original-Received: from unknown (HELO lenovo-b0c22c0d) (nil@mad.dog.cx@110.66.21.70) by msv5.zenno.net with SMTP; 24 Jan 2012 10:46:53 +0900 In-Reply-To: <87sjjb4rju.fsf@gnu.org> User-Agent: Opera Mail/11.61 (Win32) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 125.53.25.155 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:147861 Archived-At: 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 --- 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;