forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitd1e2a38
committed
Enhance make_ctags and make_etags.
make_ctags did not include field members of structs since the commit964d01a.For example, in the following field of RestrictInfo: Selectivity norm_selec pg_node_attr(equal_ignore);pg_node_attr was mistakenly interpreted to be the name of the field.To fix this, add -I option to ctags command if the command isExuberant ctags or Universal ctags (for plain old ctags, structmembers are not included in the tags file anyway).Also add "-e" and "-n" options to make_ctags. The -e option invokesctags command with -e option, which produces TAGS file for emacs. Thisallows to eliminate duplicate codes in make_etags so that make_etagsjust exec make_ctags with -e option.The -n option allows not to produce symbolic links in eachsub directory (the default is producing symbolic links).Author: Yugo NagataReviewers: Alvaro Herrera, Tatsuo IshiiDiscussion:https://postgr.es/m/flat/20221007154442.76233afc7c5b255c4de6528a%40sraoss.co.jp1 parentc68ec1b commitd1e2a38
2 files changed
+48
-22
lines changedLines changed: 45 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
4 | 29 |
| |
5 | 30 |
| |
6 | 31 |
| |
7 | 32 |
| |
8 | 33 |
| |
9 |
| - | |
| 34 | + | |
10 | 35 |
| |
11 | 36 |
| |
12 | 37 |
| |
| |||
34 | 59 |
| |
35 | 60 |
| |
36 | 61 |
| |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
37 | 68 |
| |
38 |
| - | |
39 |
| - | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
40 | 73 |
| |
41 | 74 |
| |
42 | 75 |
| |
| |||
45 | 78 |
| |
46 | 79 |
| |
47 | 80 |
| |
48 |
| - | |
| 81 | + | |
49 | 82 |
| |
50 | 83 |
| |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + |
Lines changed: 3 additions & 13 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 |
| - | |
3 | 2 |
| |
4 | 3 |
| |
5 |
| - | |
6 |
| - | |
7 |
| - | |
8 |
| - | |
9 |
| - | |
10 |
| - | |
11 |
| - | |
12 |
| - | |
13 |
| - | |
14 |
| - | |
15 |
| - | |
16 |
| - | |
| 4 | + | |
| 5 | + | |
| 6 | + |
0 commit comments
Comments
(0)