Fix parsing of precompiled macro definitions

Passing preprocessor definitions forward into library cells was broken
by this bug in processing the precompiled macro values that were written
by the main preprocessor.
This commit is contained in:
Stephen Williams 2008-04-17 11:52:51 -07:00
parent 373123af6b
commit 23e60aa381
1 changed files with 2 additions and 0 deletions

View File

@ -1635,6 +1635,8 @@ void load_precompiled_defines(FILE* src)
name = cp;
*cp++ = ch;
while ((ch = fgetc(src)) != EOF && ch != ':')
*cp++ = ch;