diff options
| author | Ken Raeburn | 2009-08-17 00:48:14 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2009-08-17 00:48:14 +0000 |
| commit | 4230ab74b7bec1bc05801d91117f133efe88df25 (patch) | |
| tree | 3f9bc68e1e30de8b4bf3feb1138884d35f6c2466 /src | |
| parent | 7a55c78b36ce856c2387c59a934097c99d7b6e97 (diff) | |
| download | emacs-4230ab74b7bec1bc05801d91117f133efe88df25.tar.gz emacs-4230ab74b7bec1bc05801d91117f133efe88df25.zip | |
(main): Don't call syms_of_data twice.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/emacs.c | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 123e7a845cd..d9b4984b4d4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-08-17 Ken Raeburn <raeburn@raeburn.org> | ||
| 2 | |||
| 3 | * emacs.c (main): Don't call syms_of_data twice. | ||
| 4 | |||
| 1 | 2009-08-16 Michael Albinus <michael.albinus@gmx.de> | 5 | 2009-08-16 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * dbusbind.c (xd_initialize): Add connection file descriptor to | 7 | * dbusbind.c (xd_initialize): Add connection file descriptor to |
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) | |||
| 1630 | 1630 | ||
| 1631 | if (!initialized) | 1631 | if (!initialized) |
| 1632 | { | 1632 | { |
| 1633 | /* The basic levels of Lisp must come first. */ | 1633 | /* The basic levels of Lisp must come first. Note that |
| 1634 | /* And data must come first of all | 1634 | syms_of_data and some others have already been called. */ |
| 1635 | for the sake of symbols like error-message. */ | ||
| 1636 | syms_of_data (); | ||
| 1637 | syms_of_chartab (); | 1635 | syms_of_chartab (); |
| 1638 | syms_of_lread (); | 1636 | syms_of_lread (); |
| 1639 | syms_of_print (); | 1637 | syms_of_print (); |