diff options
Diffstat (limited to 'src/ghdldrv/ghdlxml.adb')
-rw-r--r-- | src/ghdldrv/ghdlxml.adb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ghdldrv/ghdlxml.adb b/src/ghdldrv/ghdlxml.adb index b135c384c..80fb1d557 100644 --- a/src/ghdldrv/ghdlxml.adb +++ b/src/ghdldrv/ghdlxml.adb @@ -523,14 +523,18 @@ package body Ghdlxml is is pragma Unreferenced (Cmd); begin - return Name = "--file-to-xml"; + return + Name = "file-to-xml" or else + Name = "--file-to-xml"; end Decode_Command; function Get_Short_Help (Cmd : Command_File_To_Xml) return String is pragma Unreferenced (Cmd); begin - return "--file-to-xml FILEs Dump AST in XML"; + return "file-to-xml FILEs" + & ASCII.LF & " Dump AST in XML" + & ASCII.LF & " alias: --file-to-xml"; end Get_Short_Help; procedure Perform_Action |