fixed bug in preprocessor part:
#define aap(a) a did not work if the actual argument was spread over multiple lines
This commit is contained in:
parent
900421f411
commit
4f11f3c3fd
2 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ copyact(ch1, ch2, lvl)
|
|||
}
|
||||
|
||||
PushBack();
|
||||
copy('\n');
|
||||
copy(' ');
|
||||
break;
|
||||
|
||||
case '/':
|
||||
|
|
|
@ -159,7 +159,7 @@ copyact(ch1, ch2, level)
|
|||
}
|
||||
|
||||
PushBack();
|
||||
copy('\n');
|
||||
copy(' ');
|
||||
break;
|
||||
|
||||
case '/':
|
||||
|
|
Loading…
Reference in a new issue