diff options
author | Richard Levitte <richard@levitte.org> | 2015-01-20 15:17:02 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-22 10:20:07 +0100 |
commit | ff7ca7a33668d2d23ddef3169dca547fece9138d (patch) | |
tree | 66e2120a3d21870f5d3c185c25859814d830532c /util | |
parent | Force the use of our indent profile (diff) | |
download | openssl-ff7ca7a33668d2d23ddef3169dca547fece9138d.tar.xz openssl-ff7ca7a33668d2d23ddef3169dca547fece9138d.zip |
Run expand before perl, to make sure things are properly aligned
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-x | util/openssl-format-source | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/openssl-format-source b/util/openssl-format-source index a814e1f822..1918611249 100755 --- a/util/openssl-format-source +++ b/util/openssl-format-source @@ -97,11 +97,13 @@ do # into the right possition within the code as indent leaves marked # comments entirely untouched - we appear to have no way to avoid # the double processing and get the desired output + cat "$j" | \ + expand | \ perl -0 -np \ -e 's/(\n#[ \t]*ifdef[ \t]+__cplusplus\n[^\n]*\n#[ \t]*endif\n)/\n\n\/**INDENT-OFF**\/$1\/**INDENT-ON**\/\n/g;' \ -e 's/(\n\/\*\!)/\n\/**/g;' \ -e 's/(STACK_OF|LHASH_OF)\(([^ \t,\)]+)\) /$1_$2_ /g;' \ - < "$j" | \ + | \ perl -np \ -e 's/^([ \t]*)\/\*([ \t]+.*)\*\/[ \t]*$/if (length("$1$2")<75) {$c="-"}else{$c=""}; "$1\/*$c$2*\/"/e;' \ -e 's/^\/\* ((Copyright|=|----).*)$/\/*-$1/;' \ @@ -112,7 +114,7 @@ do -e '/ASN1_ITEM_(ref|ptr|rptr)/ || s/^((ASN1|ADB)_[^\*]*[){=,]+[ \t]*)$/\/**INDENT-OFF**\/\n$1/;' \ -e 's/^(} (ASN1|ADB)_[^\*]*[\){=,;]+)$/$1\n\/**INDENT-ON**\//;' \ | \ - expand | indent $INDENT_ARGS | \ + indent $INDENT_ARGS | \ perl -np \ -e 's/^([ \t]*)\/\*-(.*)\*\/[ \t]*$/$1\/*$2*\//;' \ -e 's/^\/\*-((Copyright|=|----).*)$/\/* $1/;' \ |