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
05647625
Commit
05647625
authored
Nov 15, 1989
by
dcw
Browse files
fixed stupid bug: parse_shape & build_shapelist called with two
parameters.
parent
db4af5ff
Changes
1
Show whitespace changes
Inline
Side-by-side
parser.c
View file @
05647625
...
...
@@ -95,10 +95,11 @@ static BOOL parse_shapes( sp ) shapelist *sp;
{
char
*
tagname
;
paramlist
paras
;
printlist
print
;
for
(;;)
{
if
(
!
parse_shape
(
&
tagname
,
&
paras
)
)
return
FALSE
;
*
sp
=
build_shapelist
(
tagname
,
paras
,
NULL
);
if
(
!
parse_shape
(
&
tagname
,
&
paras
,
&
print
)
)
return
FALSE
;
*
sp
=
build_shapelist
(
tagname
,
paras
,
print
,
NULL
);
if
(
nexttok
()
!=
tOR
)
break
;
sp
=
&
(
(
*
sp
)
->
next
);
}
...
...
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