File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Tmain/lregex-kind-letter.d Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
4
4
CTAGS=" $1 --quiet --options=NONE"
5
5
6
- echo param: ' |(.)|\1|^'
6
+ /bin/ echo param: ' |(.)|\1|^'
7
7
${CTAGS} --langdef=x --regex-x=' |(.)|\1|^' --list-kinds-full=x
8
8
# In this case, ctags ignores the substring after the last '|'.
9
9
# It is evaluated as flags.
10
10
11
- echo param: ' |(.)|\1|^|'
11
+ /bin/ echo param: ' |(.)|\1|^|'
12
12
${CTAGS} --langdef=x --regex-x=' |(.)|\1|^|' --list-kinds-full=x
13
13
# In this case, ctags warns specifying a wrong kind letter.
14
14
15
- echo param: ' |(.)|\1|^|'
15
+ /bin/ echo param: ' |(.)|\1|^|'
16
16
${CTAGS} --langdef=x --regex-x=' |(.)|\1|,' --list-kinds-full=x
17
17
# In this case, ctags ignores the substring after the last '|'.
18
18
# It is evaluated as flags.
19
19
20
- echo param: ' |(.)|\1|,|'
20
+ /bin/ echo param: ' |(.)|\1|,|'
21
21
${CTAGS} --langdef=x --regex-x=' |(.)|\1|,|' --list-kinds-full=x
22
22
# In this case, ctags recognized a kind letter and name
23
23
# is not given; 'r' and "regex" are used as default values.
You can’t perform that action at this time.
0 commit comments