Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Duncan White
C-datadec
Commits
e8e6b50b
Commit
e8e6b50b
authored
Apr 07, 1992
by
dcw
Browse files
minor reformatting in whitespace
parent
9cce4f32
Changes
1
Hide whitespace changes
Inline
Side-by-side
lexer.c
View file @
e8e6b50b
...
...
@@ -54,9 +54,9 @@ static void white_space()
int
c
;
for
(;;)
{
c
=
getc
(
lexfile
);
if
(
c
==
EOF
)
break
;
if
(
c
==
'\n'
)
lineno
++
;
c
=
getc
(
lexfile
);
if
(
c
==
EOF
)
break
;
if
(
c
==
'\n'
)
lineno
++
;
if
(
c
!=
' '
&&
c
!=
'\t'
&&
c
!=
'\n'
)
break
;
}
ungetc
(
c
,
lexfile
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment