# HG changeset patch # User Ken Raeburn # Date 1250470094 0 # Node ID c8e168f901e777ea822b2003a5983d9f735a3118 # Parent bf7a2419d30f1ae9f091dd63793df313f915f24c (main): Don't call syms_of_data twice. diff -r bf7a2419d30f -r c8e168f901e7 src/ChangeLog --- a/src/ChangeLog Sun Aug 16 23:20:21 2009 +0000 +++ b/src/ChangeLog Mon Aug 17 00:48:14 2009 +0000 @@ -1,3 +1,7 @@ +2009-08-17 Ken Raeburn + + * emacs.c (main): Don't call syms_of_data twice. + 2009-08-16 Michael Albinus * dbusbind.c (xd_initialize): Add connection file descriptor to diff -r bf7a2419d30f -r c8e168f901e7 src/emacs.c --- 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 ();