numparam, drop some typedefs

This commit is contained in:
rlar 2016-05-05 12:11:20 +02:00
parent fa14255fc9
commit 7aa3664157
2 changed files with 1 additions and 4 deletions

View File

@ -9,10 +9,7 @@
/***** numparam internals ********/
typedef enum {Nodekey = '#'} _nNodekey; /* Introduces node symbol */
typedef enum {Intro = '&'} _nIntro; /* Introduces preprocessor tokens */
typedef enum {Comment = '*'} _nComment; /* Spice Comment lines */
typedef enum {Psp = '{'} _nPsp; /* Ps expression */
/* -----------------------------------------------------------------

View File

@ -1208,7 +1208,7 @@ nupa_substitute(dico_t *dico, char *s, char *r, bool err)
i++;
c = s[i - 1];
if (c == Psp) {
if (c == '{') {
/* try ps expression syntax */
k = i;
nnest = 1;