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
1ce38d72
Commit
1ce38d72
authored
Apr 07, 1992
by
dcw
Browse files
added alternate spellings of "|", ie. "OR" and "or"
parent
a781b586
Changes
1
Hide whitespace changes
Inline
Side-by-side
lexer.c
View file @
1ce38d72
...
...
@@ -140,6 +140,12 @@ TOKEN nexttok()
}
else
if
(
streq
(
curid
,
"TYPE"
)
)
{
curtok
=
tTYPE
;
}
else
if
(
streq
(
curid
,
"OR"
)
)
{
curtok
=
tOR
;
}
else
if
(
streq
(
curid
,
"or"
)
)
{
curtok
=
tOR
;
}
}
else
if
(
isdigit
(
c
)
)
{
...
...
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