summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@raeburn.org>2009-08-17 00:48:14 +0000
committerKen Raeburn <raeburn@raeburn.org>2009-08-17 00:48:14 +0000
commit4230ab74b7bec1bc05801d91117f133efe88df25 (patch)
tree3f9bc68e1e30de8b4bf3feb1138884d35f6c2466 /src/emacs.c
parent7a55c78b36ce856c2387c59a934097c99d7b6e97 (diff)
downloademacs-4230ab74b7bec1bc05801d91117f133efe88df25.tar.gz
(main): Don't call syms_of_data twice.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 7e9373d305c..657465da833 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -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 ();