* Emacs 23.4 release candidate 1
@ 2012-01-19 15:53 Chong Yidong
2012-01-24 1:46 ` HIROSHI OOTA
0 siblings, 1 reply; 7+ messages in thread
From: Chong Yidong @ 2012-01-19 15:53 UTC (permalink / raw)
To: emacs-devel
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.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Emacs 23.4 release candidate 1
2012-01-19 15:53 Emacs 23.4 release candidate 1 Chong Yidong
@ 2012-01-24 1:46 ` HIROSHI OOTA
2012-01-24 7:18 ` Kenichi Handa
0 siblings, 1 reply; 7+ messages in thread
From: HIROSHI OOTA @ 2012-01-24 1:46 UTC (permalink / raw)
To: emacs-devel
On Fri, 20 Jan 2012 00:53:41 +0900, Chong Yidong <cyd@gnu.org> 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;
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Emacs 23.4 release candidate 1
2012-01-24 1:46 ` HIROSHI OOTA
@ 2012-01-24 7:18 ` Kenichi Handa
2012-01-24 11:51 ` Juanma Barranquero
0 siblings, 1 reply; 7+ messages in thread
From: Kenichi Handa @ 2012-01-24 7:18 UTC (permalink / raw)
To: HIROSHI OOTA; +Cc: emacs-devel
In article <op.v8ke8g1vb34bpo@lenovo-b0c22c0d>, "HIROSHI OOTA" <nil@mad.dog.cx> writes:
> On Fri, 20 Jan 2012 00:53:41 +0900, Chong Yidong <cyd@gnu.org> 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;
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Emacs 23.4 release candidate 1
2012-01-24 7:18 ` Kenichi Handa
@ 2012-01-24 11:51 ` Juanma Barranquero
2012-01-25 0:56 ` Kenichi Handa
0 siblings, 1 reply; 7+ messages in thread
From: Juanma Barranquero @ 2012-01-24 11:51 UTC (permalink / raw)
To: Kenichi Handa; +Cc: HIROSHI OOTA, emacs-devel
On Tue, Jan 24, 2012 at 08:18, Kenichi Handa <handa@m17n.org> wrote:
> 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?
For 23.4 or trunk?
Juanma
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Emacs 23.4 release candidate 1
2012-01-24 11:51 ` Juanma Barranquero
@ 2012-01-25 0:56 ` Kenichi Handa
2012-01-25 5:56 ` Chong Yidong
0 siblings, 1 reply; 7+ messages in thread
From: Kenichi Handa @ 2012-01-25 0:56 UTC (permalink / raw)
To: Juanma Barranquero; +Cc: nil, emacs-devel
In article <CAAeL0ST9tMCykrD+1NgK4DkNa25btfseaCf_Gt1mkOygFpRsmg@mail.gmail.com>, Juanma Barranquero <lekktu@gmail.com> writes:
> On Tue, Jan 24, 2012 at 08:18, Kenichi Handa <handa@m17n.org> wrote:
> > 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?
> For 23.4 or trunk?
23.4 is better because the change to let
encode_designation_at_bol return bytes was in 23.4.
---
Kenichi Handa
handa@m17n.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Emacs 23.4 release candidate 1
2012-01-25 0:56 ` Kenichi Handa
@ 2012-01-25 5:56 ` Chong Yidong
2012-01-26 0:37 ` Kenichi Handa
0 siblings, 1 reply; 7+ messages in thread
From: Chong Yidong @ 2012-01-25 5:56 UTC (permalink / raw)
To: Kenichi Handa; +Cc: nil, Juanma Barranquero, emacs-devel
Kenichi Handa <handa@m17n.org> writes:
> In article
> <CAAeL0ST9tMCykrD+1NgK4DkNa25btfseaCf_Gt1mkOygFpRsmg@mail.gmail.com>,
> Juanma Barranquero <lekktu@gmail.com> writes:
>
>> On Tue, Jan 24, 2012 at 08:18, Kenichi Handa <handa@m17n.org> wrote:
>> > 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?
>
>> For 23.4 or trunk?
>
> 23.4 is better because the change to let
> encode_designation_at_bol return bytes was in 23.4.
Committed to the emacs-23 branch, and merged to trunk. Thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Emacs 23.4 release candidate 1
2012-01-25 5:56 ` Chong Yidong
@ 2012-01-26 0:37 ` Kenichi Handa
0 siblings, 0 replies; 7+ messages in thread
From: Kenichi Handa @ 2012-01-26 0:37 UTC (permalink / raw)
To: Chong Yidong; +Cc: nil, lekktu, emacs-devel
In article <87vco0iauz.fsf@gnu.org>, Chong Yidong <cyd@gnu.org> writes:
> Kenichi Handa <handa@m17n.org> writes:
> > In article
> > <CAAeL0ST9tMCykrD+1NgK4DkNa25btfseaCf_Gt1mkOygFpRsmg@mail.gmail.com>,
> > Juanma Barranquero <lekktu@gmail.com> writes:
> >
>>> On Tue, Jan 24, 2012 at 08:18, Kenichi Handa <handa@m17n.org> wrote:
>>> > 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?
> >
>>> For 23.4 or trunk?
> >
> > 23.4 is better because the change to let
> > encode_designation_at_bol return bytes was in 23.4.
> Committed to the emacs-23 branch, and merged to trunk. Thanks.
Thank you!
---
Kenichi Handa
handa@m17n.org
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2012-01-26 0:37 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-19 15:53 Emacs 23.4 release candidate 1 Chong Yidong
2012-01-24 1:46 ` HIROSHI OOTA
2012-01-24 7:18 ` Kenichi Handa
2012-01-24 11:51 ` Juanma Barranquero
2012-01-25 0:56 ` Kenichi Handa
2012-01-25 5:56 ` Chong Yidong
2012-01-26 0:37 ` Kenichi Handa
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).