From f8d95d8bac40f8eab38a308475ae1a66293e53d6 Mon Sep 17 00:00:00 2001 From: tomo Date: Tue, 27 Dec 2005 08:59:39 +0000 Subject: [PATCH] (main_1): Setup symbols and variable about concord if HAVE_CONCORD is defined. --- src/emacs.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 1.7.10.4