summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2021-01-05 13:57:48 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2021-01-05 17:38:13 (EST)
commitc4f21277eeb379fd9b4995e82d01ec301902515c (patch)
treee2145578045467dc9623751da228fd18feb8401e
parent2ce76369d6aeab9b983570780ea3fa60b358d5b5 (diff)
extract-copyright-comments: Drop author, written
-rwxr-xr-xextract-copyright-comments4
1 files changed, 2 insertions, 2 deletions
diff --git a/extract-copyright-comments b/extract-copyright-comments
index 0b26731..9cbf6bf 100755
--- a/extract-copyright-comments
+++ b/extract-copyright-comments
@@ -61,7 +61,7 @@ extract_cxx_comment()
done
if printf '%s' "${comment}" | grep -Eqi \
- 'copyright|\(c\)|author|written|license|public domain'
+ 'copyright|\(c\)|license|public domain'
then
printf '\t%s\n' "${indent}${comment}"
fi
@@ -101,7 +101,7 @@ extract_c_comment()
done
if printf '%s' "${comment}" | grep -Eqi \
- 'copyright|\(c\)|author|written|license|public domain'
+ 'copyright|\(c\)|license|public domain'
then
printf '%s\n' "${indent}${comment}" | sed 's/^/\t/'
fi