diff options
Diffstat (limited to 'gdb/copyright.py')
-rw-r--r-- | gdb/copyright.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/copyright.py b/gdb/copyright.py index 180e7c4..e8f2833 100644 --- a/gdb/copyright.py +++ b/gdb/copyright.py @@ -35,14 +35,6 @@ import os import os.path import subprocess -# A list of prefixes that start a multi-line comment. These prefixes -# should not be repeatead when wraping long lines. -MULTILINE_COMMENT_PREFIXES = ( - '/*', # C/C++ - '<!--', # XML - '{', # Pascal -) - def get_update_list(): """Return the list of files to update. @@ -80,10 +72,6 @@ def update_files(update_list): We use gnulib's update-copyright script for that. """ - # Tell the update-copyright script that we do not want it to - # repeat the prefixes in MULTILINE_COMMENT_PREFIXES. - os.environ['MULTILINE_COMMENT_PREFIXES'] = \ - '\n'.join(MULTILINE_COMMENT_PREFIXES) # We want to use year intervals in the copyright notices, and # all years should be collapsed to one single year interval, # even if there are "holes" in the list of years found in the |