Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4230ab74
Commit
4230ab74
authored
Aug 17, 2009
by
Ken Raeburn
Browse files
(main): Don't call syms_of_data twice.
parent
7a55c78b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
src/ChangeLog
src/ChangeLog
+4
-0
src/emacs.c
src/emacs.c
+2
-4
No files found.
src/ChangeLog
View file @
4230ab74
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
...
...
src/emacs.c
View file @
4230ab74
...
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment