Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit662371c

Browse files
committed
Prevent _deadcode from showing in ctags and mkid
1 parenta8ae19e commit662371c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

‎src/tools/make_ctags

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/sh
22
trap"rm -f /tmp/$$" 0 1 2 3 15
33
rm -f ./tags
4-
find`pwd`/ -type f -name'*.[chyl]' -print|xargs ctags -d -t -a -f tags
4+
find`pwd`/\( -name _deadcode -a -prune\) -o \
5+
-type f -name'*.[chyl]' -print|xargs ctags -d -t -a -f tags
6+
57
sort tags>/tmp/$$&& mv /tmp/$$ tags
68

79
find. -type d -print|whileread DIR

‎src/tools/make_mkid

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/sh
2-
find`pwd`/ -type f -name'*.[chyl]' -print|sed's;//;/;g'| mkid -S.gen=C -
2+
find`pwd`/\( -name _deadcode -a -prune\) -o \
3+
-type f -name'*.[chyl]' -print|sed's;//;/;g'| mkid -S.gen=C -
34

45
find. -type d -print|whileread DIR
56
do

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp