summaryrefslogtreecommitdiff
path: root/contrib/redox.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-12-22 19:00:05 +0000
committerNick Mathewson <nickm@torproject.org>2008-12-22 19:00:05 +0000
commitb68379b13b9169cf3542d678da6c1c2b4258c49e (patch)
tree4b2dd4aebe8d834486fb86d5a0853db60337c7d4 /contrib/redox.py
parente5100bc6b5d3d7b004a66358bdf66ae8d3b00084 (diff)
downloadtor-b68379b13b9169cf3542d678da6c1c2b4258c49e.tar.gz
tor-b68379b13b9169cf3542d678da6c1c2b4258c49e.zip
Add DOCDOC entries for undocumented static and global variables.
svn:r17739
Diffstat (limited to 'contrib/redox.py')
-rwxr-xr-xcontrib/redox.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/redox.py b/contrib/redox.py
index afb457953b..e18a92f44d 100755
--- a/contrib/redox.py
+++ b/contrib/redox.py
@@ -41,12 +41,13 @@ SKIP_FILES = [ "OpenBSD_malloc_Linux.c",
"aes.h" ]
# What names of things never need javadoc
-SKIP_NAME_PATTERNS = [ r'^.*_c_id$' ]
+SKIP_NAME_PATTERNS = [ r'^.*_c_id$',
+ r'^.*_H_ID$' ]
# Which types of things should get DOCDOC comments added if they are
# missing documentation? Recognized types are in KINDS below.
-ADD_DOCDOCS_TO_TYPES = [ 'function', 'type', 'typedef' ]
-# ADD_DOCDOCS_TO_TYPES += [ 'variable', 'define' ]
+#ADD_DOCDOCS_TO_TYPES = [ 'function', 'type', 'typedef' ]
+ADD_DOCDOCS_TO_TYPES = [ 'variable' ]
# ====================
# The rest of this should not need hacking.