fixed bugs, added No_Mem()

This commit is contained in:
eck
1990-02-21 16:38:45 +00:00
parent 1228fe1baf
commit 64e1fa33d3
5 changed files with 11 additions and 6 deletions

View File

@@ -186,9 +186,10 @@ expand_defined(repl)
}
UnGetChar();
str = GetIdentifier(0);
if (str)
id = str2idf(str, 0);
else id = 0;
if (str) {
id = findidf(str);
free(str);
} else id = 0;
assert(id || class(ch) == STELL);
ch = GetChar();
ch = skipspaces(ch, 0);