File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22# Mode: -*- python -*-
33#
4- # Copyright (c) 2015-2017, 2019-2024 by Rocky Bernstein
4+ # Copyright (c) 2015-2017, 2019-2025 by Rocky Bernstein
55# Copyright (c) 2000-2002 by hartmut Goebel <h.goebel@crazy-compilers.com>
66#
77
@@ -24,7 +24,7 @@ def usage():
2424 sys .exit (1 )
2525
2626
27- @click .command ()
27+ @click .command (context_settings = { "help_option_names" : [ "--help" , "-help" , "-h" ]} )
2828@click .option (
2929 "--asm++/--no-asm++" ,
3030 "-A" ,
@@ -73,14 +73,14 @@ def usage():
7373 "--start-offset" ,
7474 "start_offset" ,
7575 default = 0 ,
76- help = "start decomplation at offset; default is 0 or the starting offset." ,
76+ help = "start decompilation at offset; default is 0 or the starting offset." ,
7777)
7878@click .version_option (version = __version__ )
7979@click .option (
8080 "--stop-offset" ,
8181 "stop_offset" ,
8282 default = - 1 ,
83- help = "stop decomplation when seeing an offset greater or equal to this; default is "
83+ help = "stop decompilation when seeing an offset greater or equal to this; default is "
8484 "-1 which indicates no stopping point." ,
8585)
8686@click .argument ("files" , nargs = - 1 , type = click .Path (readable = True ), required = True )
You can’t perform that action at this time.
0 commit comments