Add prototypes for parsestr() and parsestrplus() (unrelated, but
seemed to make sense.)
static int com_newlocal PROTO((struct compiling *, char *));
static codeobject *icompile PROTO((struct _node *, struct compiling *));
static codeobject *jcompile PROTO((struct _node *, char *, struct compiling *));
+static object *parsestrplus PROTO((node *));
+static object *parsestr PROTO((char *));
static int
com_init(c, filename)
return i == 0;
case STRING:
- v = parsestrplus(n);
+ v = parsestr(STR(n));
if (v == NULL) {
err_clear();
break;