[tor-commits] [tor/master] checkSpace.pl: Allow space between iteration macros and ().

nickm at torproject.org nickm at torproject.org
Thu Mar 5 13:25:48 UTC 2020


commit 8d6f27cea58627e08e7872c785456235122e060b
Author: Nick Mathewson <nickm at torproject.org>
Date:   Fri Jan 10 08:32:15 2020 -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.
---
 scripts/maint/checkSpace.pl | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl
index cc77d8d5b..a5480d5ba 100755
--- 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 = ();





More information about the tor-commits mailing list