diff options
| author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-12-03 13:52:00 +0000 |
|---|---|---|
| committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-12-04 21:37:02 +0000 |
| commit | f71de84f1d9f7c2d63226a2e5534fc12d05ec716 (patch) | |
| tree | fb1b3b020c8f6e0129b791bdf07e952850b889a9 /Functions | |
| parent | 40074: vcs_info git: rfc822-unfold rebase-apply patch subjects when msg-clean... (diff) | |
| download | zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.tar zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.tar.gz zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.tar.bz2 zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.tar.lz zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.tar.xz zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.tar.zst zsh-f71de84f1d9f7c2d63226a2e5534fc12d05ec716.zip | |
unposted: vcs_info git: Handle rebase-apply sequences with >=10000 patches.
Review-by: Frank Terbeck
Diffstat (limited to 'Functions')
| -rw-r--r-- | Functions/VCS_Info/Backends/VCS_INFO_get_data_git | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Functions/VCS_Info/Backends/VCS_INFO_get_data_git b/Functions/VCS_Info/Backends/VCS_INFO_get_data_git index a92261fa3..65d8cb182 100644 --- a/Functions/VCS_Info/Backends/VCS_INFO_get_data_git +++ b/Functions/VCS_Info/Backends/VCS_INFO_get_data_git @@ -232,14 +232,17 @@ elif [[ -d "${gitdir}/rebase-apply" ]]; then local cur=$(< $next) local p subject for ((p = 1; p < cur; p++)); do - git_patches_applied+=("$(printf "%04d" $p) ?") + printf -v "git_patches_applied[$p]" "%04d ?" "$p" done if [[ -f "${patchdir}/msg-clean" ]]; then subject="${$(< "${patchdir}/msg-clean")[(f)1]}" - elif [[ -f "${patchdir}/${(l:4::0:)cur}" ]]; then + elif local this_patch_file + printf -v this_patch_file "%s/%04d" "${patchdir}" "${cur}" + [[ -f $this_patch_file ]] + then () { local REPLY - VCS_INFO_patch2subject "${patchdir}/${(l:4::0:)cur}" + VCS_INFO_patch2subject "${this_patch_file}" subject=$REPLY } fi |
