(main): Don't call syms_of_data twice.
authorKen Raeburn <raeburn@raeburn.org>
Mon, 17 Aug 2009 00:48:14 +0000 (00:48 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Mon, 17 Aug 2009 00:48:14 +0000 (00:48 +0000)
src/ChangeLog
src/emacs.c

index 123e7a8..d9b4984 100644 (file)
@@ -1,3 +1,7 @@
+2009-08-17  Ken Raeburn  <raeburn@raeburn.org>
+
+       * emacs.c (main): Don't call syms_of_data twice.
+
 2009-08-16  Michael Albinus  <michael.albinus@gmx.de>
 
        * dbusbind.c (xd_initialize): Add connection file descriptor to
index 7e9373d..657465d 100644 (file)
@@ -1630,10 +1630,8 @@ main (int argc, char **argv)
 
   if (!initialized)
     {
-      /* The basic levels of Lisp must come first.  */
-      /* And data must come first of all
-        for the sake of symbols like error-message.  */
-      syms_of_data ();
+      /* The basic levels of Lisp must come first.  Note that
+        syms_of_data and some others have already been called.  */
       syms_of_chartab ();
       syms_of_lread ();
       syms_of_print ();