aboutsummaryrefslogtreecommitdiff
path: root/scripts/stripdecls.py
diff options
context:
space:
mode:
authorDisconnect3d <dominik.b.czarnota@gmail.com>2019-07-09 20:06:52 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-07-09 20:06:52 +0200
commitc515b5c1f131125658e296642bf55b23a210e565 (patch)
treec8de03af12977f36b8ae1e1915ef61b323462c5a /scripts/stripdecls.py
parent03a022622144acd46276322d19f0d1592ec57466 (diff)
downloadrneovim-c515b5c1f131125658e296642bf55b23a210e565.tar.gz
rneovim-c515b5c1f131125658e296642bf55b23a210e565.tar.bz2
rneovim-c515b5c1f131125658e296642bf55b23a210e565.zip
scripts/stripdecls.py #10458
Remove the `only_static = False` which clobbers the `--static` CLI argument.
Diffstat (limited to 'scripts/stripdecls.py')
-rwxr-xr-xscripts/stripdecls.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/stripdecls.py b/scripts/stripdecls.py
index 34be2a1578..a73b1980cb 100755
--- a/scripts/stripdecls.py
+++ b/scripts/stripdecls.py
@@ -18,8 +18,6 @@ Strip = namedtuple('Strip', 'start_line start_column end_line end_column')
def main(progname, cfname, only_static, move_all):
- only_static = False
-
cfname = os.path.abspath(os.path.normpath(cfname))
hfname1 = os.path.splitext(cfname)[0] + os.extsep + 'h'