Skip to content
Snippets Groups Projects
Commit f1000743 authored by James Bonfield's avatar James Bonfield
Browse files

Replace tabs with spaces to the next tab stop (multiples of 8).

Plus also a few manual tweaks to indentation levels, mostly caused by
failure to keep indentation correct after old search and replaces.

See also e770a1b3 for the earlier commit
to change these elsewhere in htslib.  Use git blame -w to compare beyond
these commits.

For reference, the command used to do this was perl:

    perl -e 'while(<>){while(s/^(.*?)\t/"$1".(" "x(8-length($1)%8))/e){};s/\s*$/\n/;print}'

However GNU "expand | sed 's/ *$//'" also works if you have it
installed.
parent c4a7c728
Branches
No related tags found
No related merge requests found
Showing with 8246 additions and 8246 deletions
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment