Skip to content
  • Jeff King's avatar
    strvec: convert remaining callers away from argv_array name · c972bf4c
    Jeff King authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    We eventually want to drop the argv_array name and just use strvec
    consistently. There's no particular reason we have to do it all at once,
    or care about interactions between converted and unconverted bits.
    Because of our preprocessor compat layer, the names are interchangeable
    to the compiler (so even a definition and declaration using different
    names is OK).
    
    This patch converts all of the remaining files, as the resulting diff is
    reasonably sized.
    
    The conversion was done purely mechanically with:
    
      git ls-files '*.c' '*.h' |
      xargs perl -i -pe '
        s/ARGV_ARRAY/STRVEC/g;
        s/argv_array/strvec/g;
      '
    
    We'll deal with any indentation/style fallouts separately.
    
    Signed-off-by: default avatarJeff King <peff@peff.net>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    c972bf4c