diff options
Diffstat (limited to 'src/lastfile.c')
| -rw-r--r-- | src/lastfile.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lastfile.c b/src/lastfile.c index d348e4ebb07..f8a64797362 100644 --- a/src/lastfile.c +++ b/src/lastfile.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Mark end of data space to dump as pure, for GNU Emacs. | 1 | /* Mark end of data space to dump as pure, for GNU Emacs. |
| 2 | Copyright (C) 1985, 2001-2011 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 2001-2012 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -23,7 +23,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 23 | 23 | ||
| 24 | The files of Emacs are written so as to have no initialized | 24 | The files of Emacs are written so as to have no initialized |
| 25 | data that can ever need to be altered except at the first startup. | 25 | data that can ever need to be altered except at the first startup. |
| 26 | This is so that those words can be dumped as sharable text. | 26 | This is so that those words can be dumped as shareable text. |
| 27 | 27 | ||
| 28 | It is not possible to exercise such control over library files. | 28 | It is not possible to exercise such control over library files. |
| 29 | So it is necessary to refrain from making their data areas shared. | 29 | So it is necessary to refrain from making their data areas shared. |
| @@ -47,4 +47,3 @@ char my_endbss[1]; | |||
| 47 | of the bss area used by Emacs. */ | 47 | of the bss area used by Emacs. */ |
| 48 | static char _my_endbss[1]; | 48 | static char _my_endbss[1]; |
| 49 | char * my_endbss_static = _my_endbss; | 49 | char * my_endbss_static = _my_endbss; |
| 50 | |||