dlugolecki.net.pl
Dziennik
Polecane
Software
projects
/
gedcom-parse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
753c95b
)
tag is struct instead of simple string.
author
Peter Verthez
<Peter.Verthez@advalvas.be>
Wed, 16 Jan 2002 17:50:29 +0000
(17:50 +0000)
committer
Peter Verthez
<Peter.Verthez@advalvas.be>
Wed, 16 Jan 2002 17:50:29 +0000
(17:50 +0000)
gedcom/gedcom.y
patch
|
blob
|
history
diff --git
a/gedcom/gedcom.y
b/gedcom/gedcom.y
index fcffbd4dbffc70a429561e27e5c4b1713e455be0..9e684944d62578147c8f152e7c2d8751cd06ecd3 100644
(file)
--- a/
gedcom/gedcom.y
+++ b/
gedcom/gedcom.y
@@
-3548,7
+3548,7
@@
error_subs : /* empty */
error_sect : OPEN DELIM opt_xref anytag opt_value error_subs CLOSE { }
gen_sect : OPEN DELIM opt_xref anystdtag
- { INVALID_TAG($4); }
+ { INVALID_TAG($4
.string
); }
opt_value opt_sects CLOSE
{ }
;
@@
-3558,7
+3558,7
@@
gen_rec : gen_rec_top
;
gen_rec_norm : OPEN DELIM opt_xref anystdtag
- { INVALID_TOP_TAG($4) }
+ { INVALID_TOP_TAG($4
.string
) }
opt_value opt_sects CLOSE
{ }
;