diff options
| author | Chris Morgan <me@chrismorgan.info> | 2013-12-20 09:33:47 +1100 |
|---|---|---|
| committer | Chris Morgan <me@chrismorgan.info> | 2013-12-20 09:33:47 +1100 |
| commit | 22055802cf03e498c56c55ce8375ca4e3935a5e5 (patch) | |
| tree | 09b5e73813949401f41393194f4851d677b844b5 /src | |
| parent | 3906823765b1ec241df4906527a990ec945c4392 (diff) | |
| download | rust-22055802cf03e498c56c55ce8375ca4e3935a5e5.tar.gz rust-22055802cf03e498c56c55ce8375ca4e3935a5e5.zip | |
Fix two regressions introduced by #11072.
There, concrete evidence that I shouldn't try doing such things at 1:30am.
Diffstat (limited to 'src')
| -rw-r--r-- | src/etc/ctags.rust | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/etc/ctags.rust b/src/etc/ctags.rust index ee6f863aa50..f0fab3347d1 100644 --- a/src/etc/ctags.rust +++ b/src/etc/ctags.rust @@ -3,10 +3,9 @@ --regex-Rust=/^[ \t]*(pub[ \t]+)?fn[ \t]+([a-zA-Z0-9_]+)/\2/f,functions,function definitions/ --regex-Rust=/^[ \t]*(pub[ \t]+)?type[ \t]+([a-zA-Z0-9_]+)/\2/T,types,type definitions/ --regex-Rust=/^[ \t]*(pub[ \t]+)?enum[ \t]+([a-zA-Z0-9_]+)/\2/g,enum,enumeration names/ ---regex-Rust=/^[ \t]*(pub[ \t]+)?enum[ \t]+([a-zA-Z0-9_]+)/\2/g,enum,enumeration names/ --regex-Rust=/^[ \t]*(pub[ \t]+)?struct[ \t]+([a-zA-Z0-9_]+)/\2/s,structure names/ --regex-Rust=/^[ \t]*(pub[ \t]+)?mod[ \t]+([a-zA-Z0-9_]+)/\2/m,modules,module names/ --regex-Rust=/^[ \t]*(pub[ \t]+)?static[ \t]+([a-zA-Z0-9_]+)/\2/c,consts,static constants/ --regex-Rust=/^[ \t]*(pub[ \t]+)?trait[ \t]+([a-zA-Z0-9_]+)/\2/t,traits,traits/ --regex-Rust=/^[ \t]*(pub[ \t]+)?impl([ \t\n]+<.*>)?[ \t]+([a-zA-Z0-9_]+)/\3/i,impls,trait implementations/ ---regex-Rust=/^[ \t]*macro_rules![ \t]+([a-zA-Z0-9_]+)/\2/d,macros,macro definitions/ +--regex-Rust=/^[ \t]*macro_rules![ \t]+([a-zA-Z0-9_]+)/\1/d,macros,macro definitions/ |
