annotate version.sh @ 2881:0e0af7cbfd1b
[xemacs-hg @ 2005-08-01 16:28:18 by darrylo]
On some (64-bit) systems, sizeof(int) != sizeof(long), and this can
cause crashes because in-use lisp objects can get prematurely gc'd (and
0xdeadbeef'd). This occurs because the memory_description for the
Gap_Array structure incorrectly describes some members as XD_INT's
(32-bit objects), when they should actually be XD_ELEMCOUNT's and
XD_BYTECOUNT's (both 64-bit objects), as that is how they are declared
in the structure.
author |
darrylo |
date |
Mon, 01 Aug 2005 16:28:21 +0000 |
parents |
617b080c902f |
children |
c7034fe23870 |
rev |
line source |
163
|
1 #!/bin/sh
|
467
|
2 emacs_is_beta=t
|
265
|
3 emacs_major_version=21
|
474
|
4 emacs_minor_version=5
|
2791
|
5 emacs_beta_version=21
|
|
6 xemacs_codename="corn"
|
708
|
7 emacs_kit_version=
|
298
|
8 infodock_major_version=4
|
|
9 infodock_minor_version=0
|
422
|
10 infodock_build_version=8
|
2880
|
11 xemacs_extra_name="(+CVS-20050731)"
|
2602
|
12 xemacs_release_date="2005-02-18"
|