Commit 95ffa235 authored by Jack Jansen's avatar Jack Jansen

Removed unused variables

parent 8426477b
...@@ -2480,7 +2480,6 @@ com_arglist(c, n) ...@@ -2480,7 +2480,6 @@ com_arglist(c, n)
for (i = 0; i < nch; i++) { for (i = 0; i < nch; i++) {
node *ch = CHILD(n, i); node *ch = CHILD(n, i);
node *fp; node *fp;
char *name;
if (TYPE(ch) == STAR) if (TYPE(ch) == STAR)
break; break;
REQ(ch, fpdef); /* fpdef: NAME | '(' fplist ')' */ REQ(ch, fpdef); /* fpdef: NAME | '(' fplist ')' */
......
...@@ -557,7 +557,6 @@ find_frozen(name) ...@@ -557,7 +557,6 @@ find_frozen(name)
char *name; char *name;
{ {
struct frozen *p; struct frozen *p;
object *co;
for (p = frozen_modules; ; p++) { for (p = frozen_modules; ; p++) {
if (p->name == NULL) if (p->name == NULL)
...@@ -818,8 +817,7 @@ imp_get_frozen_object(self, args) ...@@ -818,8 +817,7 @@ imp_get_frozen_object(self, args)
object *args; object *args;
{ {
char *name; char *name;
int ret;
object *m;
if (!newgetargs(args, "s", &name)) if (!newgetargs(args, "s", &name))
return NULL; return NULL;
return get_frozen_object(name); return get_frozen_object(name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment