aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2011-11-26 22:02:00 +0300
committerMichal Marek <mmarek@suse.cz>2011-12-18 22:36:06 +0100
commitff894e396b4d0b5383127c1bcb2cd3879946526e (patch)
treee5b31c4de8cf0862f434a5edb8f8d991553ac685
parent358142dd8cbbfa2abb1090aca1b636b98ed75ef5 (diff)
ctags: remove struct forward declarations
They're quite pointless and obscure location of real structure definition. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
-rwxr-xr-xscripts/tags.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh
index 028dc5ca857..833813a99e7 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -167,6 +167,8 @@ exuberant()
--langdef=dotconfig --language-force=dotconfig \
--regex-dotconfig='/^#?[[:blank:]]*(CONFIG_[[:alnum:]_]+)/\1/'
+ # Remove structure forward declarations.
+ LANG=C sed -i -e '/^\([a-zA-Z_][a-zA-Z0-9_]*\)\t.*\t\/\^struct \1;.*\$\/;"\tx$/d' tags
}
emacs()