From 8546d64910c267f1594dd8b2275897b29bef1610 Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Sun, 2 Feb 2003 09:36:18 +0000 Subject: [PATCH] Added a note if the parse failed with compatibility mode disabled. --- bin/gedcom-check.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/gedcom-check.c b/bin/gedcom-check.c index 3f14d6c..0accc9c 100644 --- a/bin/gedcom-check.c +++ b/bin/gedcom-check.c @@ -122,6 +122,10 @@ int main(int argc, char* argv[]) } else { printf(_("Parse failed\n")); + if (!compat_enabled) { + printf(_(" Note: Compatibility mode was not enabled\n")); + printf(_(" You could try the check again using the '-c' option\n")); + } } return result; } -- 2.30.2