diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-22 19:00:05 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-22 19:00:05 +0000 |
commit | b68379b13b9169cf3542d678da6c1c2b4258c49e (patch) | |
tree | 4b2dd4aebe8d834486fb86d5a0853db60337c7d4 /contrib/redox.py | |
parent | e5100bc6b5d3d7b004a66358bdf66ae8d3b00084 (diff) | |
download | tor-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-x | contrib/redox.py | 7 |
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. |