Remove extra lines

This commit is contained in:
Olof hagsand 2024-12-05 17:35:05 +01:00
parent 3332dfef20
commit 69eaf98913
72 changed files with 1 additions and 98 deletions

View file

@ -123,7 +123,6 @@ xml_parse_content(clixon_xml_yacc *xy,
cxobj *xn = xy->xy_xelement;
cxobj *xp = xy->xy_xparent;
xy->xy_xelement = NULL; /* init */
if (xn == NULL){
if ((xn = xml_new("body", xp, CX_BODY)) == NULL)
@ -487,7 +486,6 @@ pi : BQMARK NAME EQMARK {_PARSE_DEBUG("pi -> <? NAME ?>"); free($2); }
{ _PARSE_DEBUG("pi -> <? NAME STRING ?>"); free($2); free($3);}
;
attrs : attrs attr { _PARSE_DEBUG("attrs -> attrs attr"); }
| { _PARSE_DEBUG("attrs ->"); }
;