diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-04-05 11:27:26 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-04-05 11:27:26 +0000 |
commit | cfc3bdbccea042a959bff9b255562cb92b863ca0 (patch) | |
tree | cf5c43d2ff430cdedc141e9c3c7957abde1c0af5 /src/msgfile.c | |
parent | 5b126d345c2a13c1fc58e47ff906099fd416c743 (diff) |
use unused variables
svn path=/trunk/externals/zexy/; revision=4815
Diffstat (limited to 'src/msgfile.c')
-rw-r--r-- | src/msgfile.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/msgfile.c b/src/msgfile.c index 6826542..3a925f5 100644 --- a/src/msgfile.c +++ b/src/msgfile.c @@ -284,6 +284,7 @@ static void delete_region(t_msgfile *x, int start, int stop) static void msgfile_delete(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { + ZEXY_USEVAR(s); if (ac==1) { int pos = atom_getfloat(av); int oldwhere = node_wherearewe(x); @@ -309,12 +310,14 @@ static void msgfile_delete(t_msgfile *x, t_symbol *s, int ac, t_atom *av) static void msgfile_add(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { + ZEXY_USEVAR(s); msgfile_end(x); add_currentnode(x); write_currentnode(x, ac, av); } static void msgfile_add2(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { + ZEXY_USEVAR(s); msgfile_end(x); if (x->current->previous) x->current = x->current->previous; write_currentnode(x, ac, av); @@ -322,6 +325,7 @@ static void msgfile_add2(t_msgfile *x, t_symbol *s, int ac, t_atom *av) } static void msgfile_append(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { + ZEXY_USEVAR(s); add_currentnode(x); write_currentnode(x, ac, av); } @@ -333,6 +337,7 @@ static void msgfile_append2(t_msgfile *x, t_symbol *s, int ac, t_atom *av) static void msgfile_insert(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { t_msglist *cur = x->current; + ZEXY_USEVAR(s); insert_currentnode(x); write_currentnode(x, ac, av); x->current = cur; @@ -340,6 +345,7 @@ static void msgfile_insert(t_msgfile *x, t_symbol *s, int ac, t_atom *av) static void msgfile_insert2(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { t_msglist *cur = x->current; + ZEXY_USEVAR(s); if ((x->current) && (x->current->previous)) x->current = x->current->previous; write_currentnode(x, ac, av); x->current = cur; @@ -353,6 +359,7 @@ static void msgfile_set(t_msgfile *x, t_symbol *s, int ac, t_atom *av) static void msgfile_replace(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { + ZEXY_USEVAR(s); freebytes(x->current->thislist, sizeof(x->current->thislist)); x->current->thislist = 0; x->current->n = 0; @@ -426,6 +433,7 @@ static void msgfile_find(t_msgfile *x, t_symbol *s, int ac, t_atom *av) { t_msglist *found = 0; t_msglist *cur=x->current; + ZEXY_USEVAR(s); while (cur) { int n = cur->n; @@ -692,6 +700,7 @@ static void msgfile_write(t_msgfile *x, t_symbol *filename, t_symbol *format) static void msgfile_help(t_msgfile *x) { + ZEXY_USEVAR(x); post("\n%c msgfile\t:: handle and store files of lists", HEARTSYMBOL); post("goto <n>\t: goto line <n>" "\nrewind\t\t: goto the beginning of the file" @@ -732,6 +741,7 @@ static void msgfile_free(t_msgfile *x) static void *msgfile_new(t_symbol *s, int argc, t_atom *argv) { t_msgfile *x = (t_msgfile *)pd_new(msgfile_class); + ZEXY_USEVAR(s); /* an empty node indicates the end of our listbuffer */ x->current = 0; |