inpcom.c, bug fix, allow leading '_' in parameter identifiers

This commit is contained in:
rlar 2017-04-02 13:53:14 +02:00
parent c6896cf338
commit ccfcc056ad
1 changed files with 1 additions and 1 deletions

View File

@ -5532,7 +5532,7 @@ inp_modify_exp(char* expr)
if ((*s == '|') || (*s == '&'))
s++;
wl->wl_word = copy_substring(beg, s);
} else if (isalpha_c(c)) {
} else if (isalpha_c(c) || c == '_') {
char buf[512];
int i = 0;