* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
[emacs.git] / src / firstfile.c
blobf6885e38a499c944605faa587ea3bfa217a27bce
1 /* Mark beginning of data space to dump as pure, for GNU Emacs.
2 Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
23 #ifdef WINDOWSNT
24 /* See comments in lastfile.c. */
25 char my_begdata[] = "Beginning of Emacs initialized data";
26 char my_begbss[1]; /* Do not initialize this variable. */
27 static char _my_begbss[1];
28 char * my_begbss_static = _my_begbss;
30 /* Add a dummy reference to ensure emacs.obj is linked in. */
31 extern int initialized;
32 static int * dummy = &initialized;
33 #endif
35 /* arch-tag: a6c0d2dd-00c3-4ba5-95a5-9c8ab82f39b2
36 (do not change this comment) */