From 9d3427915335b190847849effbd33a9e568b6fbe Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Wed, 16 Jan 2002 17:50:29 +0000 Subject: [PATCH] tag is struct instead of simple string. --- gedcom/gedcom.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gedcom/gedcom.y b/gedcom/gedcom.y index fcffbd4..9e68494 100644 --- 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 { } ; -- 2.30.2