tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 8d6f27cea58627e08e7872c785456235122e060b
parent bfa760738521715f8c858de7584fd08cd90cb538
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 10 Jan 2020 08:32:15 -0500

checkSpace.pl: Allow space between iteration macros and ().

Clang-format wants to put these in, and they do make sense for
consistency.

Also allow more types.

Diffstat:
Mscripts/maint/checkSpace.pl | 15++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl @@ -26,7 +26,20 @@ if ($ARGV[0] =~ /^-/) { # hashmap of things where we allow spaces between them and (. our %allow_space_after= map {$_, 1} qw{ if while for switch return int unsigned elsif WINAPI - void __attribute__ op size_t double uint64_t workqueue_reply_t bool + void __attribute__ op size_t double uint64_t + bool ssize_t + workqueue_reply_t hs_desc_decode_status_t + PRStatus + SMARTLIST_FOREACH_BEGIN SMARTLIST_FOREACH_END + HT_FOREACH + DIGESTMAP_FOREACH_MODIFY DIGESTMAP_FOREACH + DIGEST256MAP_FOREACH_MODIFY DIGEST256MAP_FOREACH + STRMAP_FOREACH_MODIFY STRMAP_FOREACH + SDMAP_FOREACH EIMAP_FOREACH RIMAP_FOREACH + MAP_FOREACH_MODIFY MAP_FOREACH + TOR_SIMPLEQ_FOREACH TOR_SIMPLEQ_FOREACH_SAFE + TOR_LIST_FOREACH TOR_LIST_FOREACH_SAFE + TOR_SLIST_FOREACH TOR_SLIST_FOREACH_SAFE }; our %basenames = ();