unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Emacs pretest 23.0.90
@ 2012-01-15  4:05 Chong Yidong
  2012-01-15 20:55 ` Emacs pretest 23.3.90 Windows Binaries Christoph Scholtes
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Chong Yidong @ 2012-01-15  4:05 UTC (permalink / raw)
  To: emacs-devel

Emacs pretest 23.0.90 is now available for download via FTP, at the
following location:

 ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.3.90.tar.gz

This is a pretest for a planned Emacs 23.4 release, which will fix the
security flaw in EDE reported on emacs-devel a few days ago.  It also
fixes many other bugs in Emacs 23.3, but contains no new features.

Please help give this as much testing as possible over the next few
days, as I hope to make the Emacs 23.4 release from this if no
significant problems are found in this pretest.

Please send me an email reporting success or failure on your build
platform, and report bugs that you find via M-x report-emacs-bugs, or
email bug-gnu-emacs@gnu.org.  For questions, email emacs-devel@gnu.org.

Thanks.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Emacs pretest 23.3.90 Windows Binaries
  2012-01-15  4:05 Emacs pretest 23.0.90 Chong Yidong
@ 2012-01-15 20:55 ` Christoph Scholtes
  2012-01-15 23:11 ` Emacs pretest 23.0.90 Ken Brown
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 11+ messages in thread
From: Christoph Scholtes @ 2012-01-15 20:55 UTC (permalink / raw)
  To: emacs-devel; +Cc: help-emacs-windows, Chong Yidong

The Emacs 23.3.90 Pretest Windows Binaries have been published in

http://alpha.gnu.org/gnu/emacs/pretest/windows/

The binaries were built using the following libraries:
giflib-4.1.4-1
jpeg-6b-4
libXpm-3.5.8
libpng-1.4.3-1
tiff-3.8.2-1
zlib-1.2.5-2

Please report any bugs that you come across via M-x report-emacs-bugs,
or email bug-gnu-emacs@gnu.org.

For questions, email emacs-devel@gnu.org.

On 1/14/2012 9:05 PM, Chong Yidong wrote:
> Emacs pretest 23.0.90 is now available for download via FTP, at the
> following location:
>
>   ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.3.90.tar.gz
>
> This is a pretest for a planned Emacs 23.4 release, which will fix the
> security flaw in EDE reported on emacs-devel a few days ago.  It also
> fixes many other bugs in Emacs 23.3, but contains no new features.
>
> Please help give this as much testing as possible over the next few
> days, as I hope to make the Emacs 23.4 release from this if no
> significant problems are found in this pretest.
>
> Please send me an email reporting success or failure on your build
> platform, and report bugs that you find via M-x report-emacs-bugs, or
> email bug-gnu-emacs@gnu.org.  For questions, email emacs-devel@gnu.org.
>
> Thanks.




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-15  4:05 Emacs pretest 23.0.90 Chong Yidong
  2012-01-15 20:55 ` Emacs pretest 23.3.90 Windows Binaries Christoph Scholtes
@ 2012-01-15 23:11 ` Ken Brown
  2012-01-16 16:46   ` Ken Brown
  2012-01-17 15:39 ` Kazuhiro Ito
  2012-01-18 23:36 ` Andy Moreton
  3 siblings, 1 reply; 11+ messages in thread
From: Ken Brown @ 2012-01-15 23:11 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel

On 1/14/2012 11:05 PM, Chong Yidong wrote:
> Emacs pretest 23.0.90 is now available for download via FTP, at the
> following location:
>
>   ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.3.90.tar.gz
>
> This is a pretest for a planned Emacs 23.4 release, which will fix the
> security flaw in EDE reported on emacs-devel a few days ago.  It also
> fixes many other bugs in Emacs 23.3, but contains no new features.
>
> Please help give this as much testing as possible over the next few
> days, as I hope to make the Emacs 23.4 release from this if no
> significant problems are found in this pretest.
>
> Please send me an email reporting success or failure on your build
> platform, and report bugs that you find via M-x report-emacs-bugs, or
> email bug-gnu-emacs@gnu.org.  For questions, email emacs-devel@gnu.org.

This doesn't build if USE_MMAP_FOR_BUFFERS is defined.  The following 
patch fixes it:

--- buffer.c~   2012-01-11 07:35:01.000000000 -0500
+++ buffer.c    2012-01-15 17:55:45.812514400 -0500
@@ -5338,7 +5338,7 @@
        Map new memory.  */
     struct buffer *b;

-   for (b = all_buffers; b; b = b->next)
+   for (b = all_buffers; b; b = b->header.next.buffer)
       if (b->text->beg == NULL)
         enlarge_buffer_text (b, 0);
   }


Ken




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-15 23:11 ` Emacs pretest 23.0.90 Ken Brown
@ 2012-01-16 16:46   ` Ken Brown
  2012-01-18 15:06     ` Chong Yidong
  0 siblings, 1 reply; 11+ messages in thread
From: Ken Brown @ 2012-01-16 16:46 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel

On 1/15/2012 6:11 PM, Ken Brown wrote:
> This doesn't build if USE_MMAP_FOR_BUFFERS is defined. The following
> patch fixes it:
>
> --- buffer.c~ 2012-01-11 07:35:01.000000000 -0500
> +++ buffer.c 2012-01-15 17:55:45.812514400 -0500
> @@ -5338,7 +5338,7 @@
> Map new memory. */
> struct buffer *b;
>
> - for (b = all_buffers; b; b = b->next)
> + for (b = all_buffers; b; b = b->header.next.buffer)
> if (b->text->beg == NULL)
> enlarge_buffer_text (b, 0);
> }

Just to clarify this, the change you missed is revno 104021.1.3 on the 
trunk:

$ bzr log -r104021.1.3 -v -p
------------------------------------------------------------
revno: 104021.1.3
committer: Paul Eggert <eggert@cs.ucla.edu>
branch nick: atest
timestamp: Wed 2011-04-27 01:06:26 -0700
message:
   * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing 
change
modified:
   src/ChangeLog
   src/buffer.c
diff:
=== modified file 'src/ChangeLog'
--- src/ChangeLog       2011-04-27 06:01:43 +0000
+++ src/ChangeLog       2011-04-27 08:06:26 +0000
@@ -1,3 +1,8 @@
+2011-04-27  Yoshiaki Kasahara  <kasahara@nc.kyushu-u.ac.jp>  (tiny change)
+
+       * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
+       change.
+
  2011-04-27  Paul Eggert  <eggert@cs.ucla.edu>

         * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.

=== modified file 'src/buffer.c'
--- src/buffer.c        2011-04-26 06:17:52 +0000
+++ src/buffer.c        2011-04-27 08:06:26 +0000
@@ -5155,7 +5155,7 @@
        Map new memory.  */
     struct buffer *b;

-   for (b = all_buffers; b; b = b->next)
+   for (b = all_buffers; b; b = b->header.next.buffer)
       if (b->text->beg == NULL)
         enlarge_buffer_text (b, 0);
   }





^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-15  4:05 Emacs pretest 23.0.90 Chong Yidong
  2012-01-15 20:55 ` Emacs pretest 23.3.90 Windows Binaries Christoph Scholtes
  2012-01-15 23:11 ` Emacs pretest 23.0.90 Ken Brown
@ 2012-01-17 15:39 ` Kazuhiro Ito
  2012-01-18 15:05   ` Chong Yidong
  2012-01-18 23:36 ` Andy Moreton
  3 siblings, 1 reply; 11+ messages in thread
From: Kazuhiro Ito @ 2012-01-17 15:39 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel

At Sun, 15 Jan 2012 12:05:32 +0800,
Chong Yidong wrote:
> 
> Emacs pretest 23.0.90 is now available for download via FTP, at the
> following location:
> 
>  ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.3.90.tar.gz
> 
> This is a pretest for a planned Emacs 23.4 release, which will fix the
> security flaw in EDE reported on emacs-devel a few days ago.  It also
> fixes many other bugs in Emacs 23.3, but contains no new features.

Please merge fixes for Bug#8619, Bug#8738, Bug#9318 and Bug#9389 from
trunk.

-- 
Kazuhiro Ito



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-17 15:39 ` Kazuhiro Ito
@ 2012-01-18 15:05   ` Chong Yidong
  2012-01-19  8:44     ` Kazuhiro Ito
  0 siblings, 1 reply; 11+ messages in thread
From: Chong Yidong @ 2012-01-18 15:05 UTC (permalink / raw)
  To: Kazuhiro Ito; +Cc: emacs-devel

Kazuhiro Ito <kzhr@d1.dion.ne.jp> writes:

> Please merge fixes for Bug#8619, Bug#8738, Bug#9318 and Bug#9389 from
> trunk.

Ah, I didn't realize those fixes were committed to the trunk rather than
the branch.  But I think they will have to wait for Emacs 24.1.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-16 16:46   ` Ken Brown
@ 2012-01-18 15:06     ` Chong Yidong
  0 siblings, 0 replies; 11+ messages in thread
From: Chong Yidong @ 2012-01-18 15:06 UTC (permalink / raw)
  To: Ken Brown; +Cc: emacs-devel

Ken Brown <kbrown@cornell.edu> writes:

>> - for (b = all_buffers; b; b = b->next)
>> + for (b = all_buffers; b; b = b->header.next.buffer)
>> if (b->text->beg == NULL)
>> enlarge_buffer_text (b, 0);
>> }
>
> Just to clarify this, the change you missed is revno 104021.1.3 on the
> trunk:

Committed, thanks.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-15  4:05 Emacs pretest 23.0.90 Chong Yidong
                   ` (2 preceding siblings ...)
  2012-01-17 15:39 ` Kazuhiro Ito
@ 2012-01-18 23:36 ` Andy Moreton
  3 siblings, 0 replies; 11+ messages in thread
From: Andy Moreton @ 2012-01-18 23:36 UTC (permalink / raw)
  To: emacs-devel

On Sun 15 Jan 2012, Chong Yidong wrote:

> Emacs pretest 23.0.90 is now available for download via FTP, at the
> following location:
>
>  ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-23.3.90.tar.gz
>
> This is a pretest for a planned Emacs 23.4 release, which will fix the
> security flaw in EDE reported on emacs-devel a few days ago.  It also
> fixes many other bugs in Emacs 23.3, but contains no new features.
>
> Please help give this as much testing as possible over the next few
> days, as I hope to make the Emacs 23.4 release from this if no
> significant problems are found in this pretest.
>
> Please send me an email reporting success or failure on your build
> platform, and report bugs that you find via M-x report-emacs-bugs, or
> email bug-gnu-emacs@gnu.org.  For questions, email emacs-devel@gnu.org.
>
> Thanks.

Please be careful with version numbers in your next announcement -
this one seemed confused over 23.0.90 (subject line) vs 23.3.90 :-)

    AndyM




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-18 15:05   ` Chong Yidong
@ 2012-01-19  8:44     ` Kazuhiro Ito
  2012-01-19 14:57       ` Chong Yidong
  0 siblings, 1 reply; 11+ messages in thread
From: Kazuhiro Ito @ 2012-01-19  8:44 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel

> > Please merge fixes for Bug#8619, Bug#8738, Bug#9318 and Bug#9389 from
> > trunk.
> 
> Ah, I didn't realize those fixes were committed to the trunk rather than
> the branch.  But I think they will have to wait for Emacs 24.1.

I hope at least Bug#9318 will be installed in Emacs 23.4.  Because
that bug can crash Emacs on Windows very easily and Wanderlust (a mail user
agent) sometimes crashes in saving a draft message and loses it.

-- 
Kazuhiro Ito



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-19  8:44     ` Kazuhiro Ito
@ 2012-01-19 14:57       ` Chong Yidong
  2012-01-21  8:26         ` Kazuhiro Ito
  0 siblings, 1 reply; 11+ messages in thread
From: Chong Yidong @ 2012-01-19 14:57 UTC (permalink / raw)
  To: Kazuhiro Ito; +Cc: emacs-devel

Kazuhiro Ito <kzhr@d1.dion.ne.jp> writes:

> I hope at least Bug#9318 will be installed in Emacs 23.4.  Because
> that bug can crash Emacs on Windows very easily and Wanderlust (a mail
> user agent) sometimes crashes in saving a draft message and loses it.

Alright, I'll take the risk and merge in the Bug#9318 fix.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Emacs pretest 23.0.90
  2012-01-19 14:57       ` Chong Yidong
@ 2012-01-21  8:26         ` Kazuhiro Ito
  0 siblings, 0 replies; 11+ messages in thread
From: Kazuhiro Ito @ 2012-01-21  8:26 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel

> > I hope at least Bug#9318 will be installed in Emacs 23.4.  Because
> > that bug can crash Emacs on Windows very easily and Wanderlust (a mail
> > user agent) sometimes crashes in saving a draft message and loses it.
> 
> Alright, I'll take the risk and merge in the Bug#9318 fix.

I've confirmed that on emacs-23 branch.  Thank you for taking the
risk.

-- 
Kazuhiro Ito



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-01-21  8:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-15  4:05 Emacs pretest 23.0.90 Chong Yidong
2012-01-15 20:55 ` Emacs pretest 23.3.90 Windows Binaries Christoph Scholtes
2012-01-15 23:11 ` Emacs pretest 23.0.90 Ken Brown
2012-01-16 16:46   ` Ken Brown
2012-01-18 15:06     ` Chong Yidong
2012-01-17 15:39 ` Kazuhiro Ito
2012-01-18 15:05   ` Chong Yidong
2012-01-19  8:44     ` Kazuhiro Ito
2012-01-19 14:57       ` Chong Yidong
2012-01-21  8:26         ` Kazuhiro Ito
2012-01-18 23:36 ` Andy Moreton

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).