summaryrefslogtreecommitdiffstats
path: root/bin/macros/addsvnid
diff options
context:
space:
mode:
Diffstat (limited to 'bin/macros/addsvnid')
-rwxr-xr-xbin/macros/addsvnid5
1 files changed, 0 insertions, 5 deletions
diff --git a/bin/macros/addsvnid b/bin/macros/addsvnid
deleted file mode 100755
index b010edc..0000000
--- a/bin/macros/addsvnid
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/awk -f
-# Add an SVN $Id$ comment at the end of the comments header
-/^#/ { aftercom = 1 }
-!/^#/ && aftercom && ! done { print "# $Id$"; done = 1 }
-{ print }