nupa_subcktcall(), drop `hp'

This commit is contained in:
rlar 2017-11-25 14:55:24 +01:00
parent b16a61fb7c
commit 6a57023ced
1 changed files with 2 additions and 3 deletions

View File

@ -1640,9 +1640,8 @@ nupa_subcktcall(dico_t *dico, char *s, char * const x, char * const inst_name)
if (alfanum(*kp) || *kp == '.') {
/* number, identifier */
char *hp = skip_non_ws(kp);
pscopy(&ustr, kp, 0, (int) (hp - kp));
jp = hp;
jp = skip_non_ws(kp);
pscopy(&ustr, kp, 0, (int) (jp - kp));
} else if (*kp == '{') {
jp = getexpress(NULL, &ustr, jp);
} else {