diff src/emacs.c @ 104312:c8e168f901e7

(main): Don't call syms_of_data twice.
author Ken Raeburn <raeburn@raeburn.org>
date Mon, 17 Aug 2009 00:48:14 +0000
parents 340c701162a6
children 6d088d4b6e1f
line wrap: on
line diff
--- a/src/emacs.c	Sun Aug 16 23:20:21 2009 +0000
+++ b/src/emacs.c	Mon Aug 17 00:48:14 2009 +0000
@@ -1630,10 +1630,8 @@
 
   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 ();