diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-01-17 08:59:30 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-01-17 08:59:30 +0000 |
commit | 12d4e0cdf82acee4f903694cf63f00b5ed064319 (patch) | |
tree | 656895412ece2c6ba9cf680c0b2b9abfb2e428ab | |
parent | 0d1512e0cbb5f95530d41fa4d48fa79bcec87ea5 (diff) |
updated copyright date and banner
svn path=/trunk/externals/zexy/; revision=15880
-rw-r--r-- | src/zexy.c | 17 | ||||
-rw-r--r-- | src/zexy.h | 2 |
2 files changed, 10 insertions, 9 deletions
@@ -44,7 +44,7 @@ t_class *zexy_class; static void zexy_help(void) { endpost(); endpost(); - post("...this is the zexy %c external "VERSION"...", HEARTSYMBOL); + post("...this is the zexy external "VERSION"..."); endpost(); post("%c handling signals", HEARTSYMBOL); #if 0 @@ -140,15 +140,16 @@ void zexy_setup(void) int i; startpost("\n\t"); - for (i=0; i<28; i++) startpost("%c", HEARTSYMBOL); + for (i=0; i<3; i++) startpost("%c", HEARTSYMBOL); endpost(); - post("\t%c the zexy external "VERSION" %c", HEARTSYMBOL, HEARTSYMBOL); - post("\t%c (l) forum::für::umläute %c", HEARTSYMBOL, HEARTSYMBOL); - post("\t%c iem @ kug %c", HEARTSYMBOL, HEARTSYMBOL); - post("\t%c compiled: "__DATE__" %c", HEARTSYMBOL, HEARTSYMBOL); - post("\t%c send me a 'help' message %c", HEARTSYMBOL, HEARTSYMBOL); + post("\t%c the zexy external "VERSION, HEARTSYMBOL); + post("\t%c (c) 1999-2012 IOhannes m zmölnig", HEARTSYMBOL); + post("\t%c forum::für::umläute", HEARTSYMBOL); + post("\t%c iem @ kug", HEARTSYMBOL); + post("\t%c compiled: "__DATE__, HEARTSYMBOL); + post("\t%c send me a 'help' message", HEARTSYMBOL); startpost("\t"); - for (i=0; i<28; i++) startpost("%c", HEARTSYMBOL); + for (i=0; i<3; i++) startpost("%c", HEARTSYMBOL); endpost(); endpost(); zexy_class = class_new(gensym("zexy"), zexy_new, 0, sizeof(t_zexy), 0, 0); @@ -112,7 +112,7 @@ typedef struct _mypdlist static void zexy_register(char*object){ if(object!=0){ post("[%s] part of zexy-%s (compiled: "__DATE__")", object, VERSION); - post("\tCopyright (l) 1999-2011 IOhannes m zmölnig, forum::für::umläute & IEM"); + post("\tCopyright (c) 1999-2012 IOhannes m zmölnig, forum::für::umläute & IEM"); } } #else |