}
}
| DELIM line_item
- { $$ = $2; }
+ { gedcom_debug_print("==Val: %s==", $2);
+ $$ = $2; }
;
note_subs : /* empty */
;
mand_pointer : /* empty */ { gedcom_error(_("Missing pointer")); YYERROR; }
- | DELIM POINTER { $$ = $2; }
+ | DELIM POINTER { gedcom_debug_print("==Ptr: %s==", $2);
+ $$ = $2; }
;
mand_line_item : /* empty */ { gedcom_error(_("Missing value")); YYERROR; }
- | DELIM line_item { $$ = $2; }
+ | DELIM line_item { gedcom_debug_print("==Val: %s==", $2);
+ $$ = $2; }
;
opt_line_item : /* empty */ { }
va_start(ap, s);
res = vfprintf(trace_output, s, ap);
va_end(ap);
+ fprintf(trace_output, "\n");
}
return(res);
}