From: Ian Jackson Date: Sun, 21 Jul 2019 00:19:53 +0000 (+0100) Subject: Dgit.pm: Abolish now-unused $t_local_git_cfg playtree_setup arg X-Git-Tag: archive/debian/9.5~22 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=7376ab4e0011581acd76bd90a62073c63026f401 Dgit.pm: Abolish now-unused $t_local_git_cfg playtree_setup arg This was there so that dgit's -c options would be honoured here. But now, we get this information via @git, which dgit adds -c options to, which we pass to git-playtree-create by invoking it via git. So this is no longer used and can be abolished. Signed-off-by: Ian Jackson --- diff --git a/Debian/Dgit.pm b/Debian/Dgit.pm index 9d4e78e1..8ed83649 100644 --- a/Debian/Dgit.pm +++ b/Debian/Dgit.pm @@ -987,7 +987,7 @@ sub reflog_cache_lookup ($$) { # changedir playground # changedir $maindir # -# playtree_setup $local_git_cfg +# playtree_setup # # ^ call in some (perhaps trivial) subdir of playground # # rmtree playground @@ -1046,9 +1046,7 @@ sub fresh_playground ($) { # ----- playtrees ----- -sub playtree_setup (;$) { - my ($t_local_git_cfg) = @_; - $t_local_git_cfg //= $local_git_cfg; +sub playtree_setup () { # for use in the playtree # $maindir must be set, eg by calling record_maindir or fresh_playground # this is confusing: we have diff --git a/dgit b/dgit index ed8bbeb8..d8176252 100755 --- a/dgit +++ b/dgit @@ -1834,7 +1834,7 @@ sub prep_ud () { } sub mktree_in_ud_here () { - playtree_setup $gitcfgs{local}; + playtree_setup(); } sub git_write_tree () {