more line counting fixes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8763 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-02-09 20:50:00 +00:00
commit 180ba8e971
3 changed files with 57 additions and 36 deletions

View file

@ -881,13 +881,18 @@ expand_macro(String *name, List *args)
copy_location(macro,e);
g = Preprocessor_parse(e);
/* Drop the macro in place, but with a marker around it */
#if 0
/* Drop the macro in place, but with a marker around it */
Printf(f,"/*@%s,%d,%s@*/%s/*@@*/", Getfile(macro), Getline(macro), name, g);
#else
Append(f,g);
/* Use simplified around markers to properly count lines in cscanner.c */
if (strstr(Char(g),"\n")) {
Printf(f,"/*@SWIG:%s@*/%s/*@SWIG@*/", name, g);
} else {
StringAppend(f,g);
}
#endif
/* Printf(f," }\n"); */
Delete(g);
Delete(e);
e = f;