From: tomo Date: Tue, 27 Dec 2005 08:59:39 +0000 (+0000) Subject: (main_1): Setup symbols and variable about concord if HAVE_CONCORD is X-Git-Tag: r21-4-17-chise-0_22-6^20~166 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8d95d8bac40f8eab38a308475ae1a66293e53d6;p=chise%2Fxemacs-chise.git (main_1): Setup symbols and variable about concord if HAVE_CONCORD is defined. --- diff --git a/src/emacs.c b/src/emacs.c index 2331bb9..87c77c4 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1589,6 +1589,10 @@ main_1 (int argc, char **argv, char **envp, int restart) syms_of_postgresql (); #endif +#ifdef HAVE_CONCORD + syms_of_concord (); +#endif + /* Now create the subtypes for the types that have them. We do this before the vars_*() because more symbols may get initialized here. */ @@ -2044,6 +2048,10 @@ main_1 (int argc, char **argv, char **envp, int restart) vars_of_postgresql(); #endif +#ifdef HAVE_CONCORD + vars_of_concord (); +#endif + #ifdef HAVE_GPM vars_of_gpmevent (); #endif