subckt.c, finishline(), #3/9, here *src === '('

This commit is contained in:
rlar 2017-03-21 19:39:22 +01:00
parent 5d3896c388
commit 8ab28df4ec
1 changed files with 2 additions and 2 deletions

View File

@ -1316,8 +1316,8 @@ finishLine(struct bxx_buffer *t, char *src, char *scname)
lastwasalpha = 0;
bxx_putc(t, which);
src = s;
bxx_putc(t, *src++);
src = skip_ws(src);
bxx_putc(t, '(');
src = skip_ws(src + 1);
for (buf = src; *src && !isspace_c(*src) && *src != ',' && *src != ')'; )
src++;
buf_end = src;