commit e3ffbc53cb6a8d1151772ac081f1f2db1c7c9de4
Author: Kornel Benko <kor...@lyx.org>
Date:   Thu May 21 16:09:21 2020 +0200

    Tools(listFontWithLang.pl): Prohibit inserting multiple entries of same 
command line option
---
 development/tools/GetOptions.pm |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/development/tools/GetOptions.pm b/development/tools/GetOptions.pm
index 5660b02..193e570 100644
--- a/development/tools/GetOptions.pm
+++ b/development/tools/GetOptions.pm
@@ -75,6 +75,18 @@ sub handleOptions($)
   while( my( $option, $value, $pretty ) = Getopt::Mixed::nextOption()) {
     if (defined($optionsDef{$option})) {
       my $fieldname = $optionsDef{$option}->{fieldname};
+      if (exists($options{$fieldname})) {
+       print "Option $option already set\n";
+       print "Value \"$value\" would overwrite ";
+       if (ref($options{$fieldname}) eq "ARRAY") {
+         print "\"" . join(',', @{$options{$fieldname}}) . "\"\n";
+       }
+       else {
+         print "\"$options{$fieldname}\"\n";
+       }
+       $option = "h";
+       $fieldname = "help";
+      }
       if ($option eq "h") {
         print "Syntax: $0 options xxxx ...\n";
         print "Available options:\n";
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to