]> git.karo-electronics.de Git - linux-beck.git/commitdiff
tags: Fix erroneous pattern match in a comment
authorMichal Marek <mmarek@suse.com>
Wed, 14 Oct 2015 08:55:04 +0000 (10:55 +0200)
committerMichal Marek <mmarek@suse.com>
Tue, 5 Jan 2016 21:10:39 +0000 (22:10 +0100)
Apparently, ctags applies the rules before deleting comments:

ctags: Warning: include/linux/completion.h:22: null expansion of name pattern "\2"

Work around this particular case by requiring the group to contain at
least one character. Leave the other patters as they are, until a better
solution is found.

Signed-off-by: Michal Marek <mmarek@suse.com>
scripts/tags.sh

index 25e30c30d1ad9d29dc7d6c539846cc03aa9e57f2..2263f35be4905daad1c341e5ce9e8d85294ef7d1 100755 (executable)
@@ -205,7 +205,7 @@ exuberant()
        --regex-c='/PCI_OP_WRITE\((\w*).*[1-4]\)/pci_bus_write_config_\1/' \
        --regex-c='/DEFINE_(MUTEX|SEMAPHORE|SPINLOCK)\((\w*)/\2/v/'     \
        --regex-c='/DEFINE_(RAW_SPINLOCK|RWLOCK|SEQLOCK)\((\w*)/\2/v/'  \
-       --regex-c='/DECLARE_(RWSEM|COMPLETION)\((\w*)/\2/v/'            \
+       --regex-c='/DECLARE_(RWSEM|COMPLETION)\((\w+)/\2/v/'            \
        --regex-c='/DECLARE_BITMAP\((\w*)/\1/v/'                        \
        --regex-c='/(^|\s)(|L|H)LIST_HEAD\((\w*)/\3/v/'                 \
        --regex-c='/(^|\s)RADIX_TREE\((\w*)/\2/v/'                      \