lots and lots of changes & improvements

This commit is contained in:
eck
1989-09-19 16:13:23 +00:00
parent 18439ffa3f
commit fa4e6eecb4
59 changed files with 1826 additions and 1571 deletions

View File

@@ -12,6 +12,8 @@
#include "input.h"
#ifndef NOPP
extern int InputLevel;
int
skipspaces(ch, skipnl)
register int ch;
@@ -19,12 +21,19 @@ skipspaces(ch, skipnl)
/* skipspaces() skips any white space and returns the first
non-space character.
*/
register int nlseen = 0;
for (;;) {
while (class(ch) == STSKIP)
ch = GetChar();
if (skipnl && class(ch) == STNL) {
ch = GetChar();
++LineNumber;
LineNumber++;
nlseen++;
continue;
}
if (ch == TOKSEP && InputLevel) {
ch = GetChar();
continue;
}
@@ -32,7 +41,7 @@ skipspaces(ch, skipnl)
if (ch == '/') {
ch = GetChar();
if (ch == '*') {
if (ch == '*' && !InputLevel) {
skipcomment();
ch = GetChar();
}
@@ -41,7 +50,10 @@ skipspaces(ch, skipnl)
return '/';
}
}
else
else if(nlseen && ch == '#') {
domacro();
ch = GetChar();
} else
return ch;
}
}
@@ -53,10 +65,9 @@ SkipToNewLine(garbage)
register int ch;
register int pstrict = 0;
UnGetChar();
while ((ch = GetChar()) != '\n') {
if (ch == '/') {
if ((ch = GetChar()) == '*') {
if ((ch = GetChar()) == '*' && !InputLevel) {
skipcomment();
continue;
}