aboutsummaryrefslogtreecommitdiff
path: root/src/zexy.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-10-22 10:18:48 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2007-10-22 10:18:48 +0000
commit21ff032fa838b3aa2adf2db77ce2a27d12813c4b (patch)
treed3adaaa5680bffa594b6c9c07d9cbdfcb1bd26b7 /src/zexy.c
parentfb31e01fd646ef0538a3c54ab1a52e4c51a043b8 (diff)
removed zexyconf.h as it was too easy to enable the wrong stuff when not
using copnfigure (e.g. in ./externals/build/src) instead we just do it ordinarily: configure will define HAVE_CONFIG_H in Make.config, and if this is set we include zexyconf.h, else we don't svn path=/trunk/externals/zexy/; revision=8857
Diffstat (limited to 'src/zexy.c')
-rw-r--r--src/zexy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/zexy.c b/src/zexy.c
index 0d8311b..62bc003 100644
--- a/src/zexy.c
+++ b/src/zexy.c
@@ -132,8 +132,7 @@ static void *zexy_new(void)
void zexy_setup(void)
{
int i;
- z_zexy_setup();
- /* ************************************** */
+
startpost("\n\t");
for (i=0; i<28; i++) startpost("%c", HEARTSYMBOL);
endpost();
@@ -149,6 +148,9 @@ void zexy_setup(void)
class_addmethod(zexy_class, zexy_help, gensym("help"), 0);
zexy_register("zexy");
+
+ /* ************************************** */
+ z_zexy_setup();
}
void verbose(int level, const char *fmt, ...){