diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2015-01-20 18:49:04 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-22 09:28:32 +0000 |
commit | defc825e9e2939fe8c57c061c798249bc99e438f (patch) | |
tree | 1091eb73f24f6b6a23cd320a453c72f0b7112e62 /util | |
parent | 319d5c7a586a5695589494e16cb3dd5f82d753ca (diff) |
Test option -nc
Add option -nc which sets COMMENTS=true but disables all indent comment
reformatting options.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-x | util/openssl-format-source | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/openssl-format-source b/util/openssl-format-source index 242c5ba81a..30d50f8b58 100755 --- a/util/openssl-format-source +++ b/util/openssl-format-source @@ -54,6 +54,8 @@ do -c) COMMENTS="true"; INDENT_ARGS="-fc1 -fca -cdb -sc"; continue;; + -nc) COMMENTS="true"; + continue;; esac fi |