]> code.delx.au - gnu-emacs/blobdiff - src/firstfile.c
Fix bug #18649 with handling C-g on MS-Windows in -nw sessions.
[gnu-emacs] / src / firstfile.c
index 7fb19c4d5b862c8214d6abadb2764b34e7cdde00..0965152422ec9d2c27565c2eadc32a316d033d7f 100644 (file)
@@ -1,6 +1,5 @@
 /* Mark beginning of data space to dump as pure, for GNU Emacs.
-   Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005,
-                 2006, 2007, 2008, 2009, 2010, 2011  Free Software Foundation, Inc.
+   Copyright (C) 1997, 2001-2014 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -28,7 +27,6 @@ static char _my_begbss[1];
 char * my_begbss_static = _my_begbss;
 
 /* Add a dummy reference to ensure emacs.obj is linked in.  */
-extern int initialized;
-static int * dummy = &initialized;
+extern int main (int, char **);
+static int (*dummy) (int, char **) = main;
 #endif
-