Mercurial > hg > xemacs-beta
annotate src/pre-crt0.c @ 5635:2fc3f2f35523
Put back compatibility alias for #'cl-puthash, used by 21.4's setf expansion
2012-01-02 Aidan Kehoe <kehoea@parhasard.net>
* obsolete.el (cl-puthash): Put back a compatibility alias for
this, setf-expansion of #'gethash calls it on 21.4, so it will
occur in packages for a while to come.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 02 Jan 2012 13:35:31 +0000 |
parents | 308d34e9f07d |
children |
rev | line source |
---|---|
0 | 1 /* This file is part of XEmacs. |
2 | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
3 XEmacs is free software: you can redistribute it and/or modify it |
0 | 4 under the terms of the GNU General Public License as published by the |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
5 Free Software Foundation, either version 3 of the License, or (at your |
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
6 option) any later version. |
0 | 7 |
8 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
11 for more details. | |
12 | |
13 You should have received a copy of the GNU General Public License | |
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
0
diff
changeset
|
14 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
0 | 15 |
16 /* Synched up with: FSF 19.30. */ | |
17 | |
18 /* This file is loaded before crt0.o on machines where we do not | |
19 remap part of the data space into text space in unexec. | |
20 On these machines, there is no problem with standard crt0.o's | |
21 that make environ an initialized variable. However, we do | |
22 need to make sure the label data_start exists anyway. */ | |
23 | |
24 /* Create a label to appear at the beginning of data space. */ | |
25 | |
26 int data_start = 0; |