rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / editor / vim / patches / 7197223.patch
blobb9215726aaa714c95aeeff74720ec793e15b6daa
1 --- a/runtime/syntax/dtrace.vim Thu Sep 13 09:27:02 2012
2 +++ b/runtime/syntax/dtrace.vim Thu Sep 13 09:27:15 2012
3 @@ -35,8 +35,8 @@
4 " XXX: This allows a probe description to end with ',', even if it's not
5 " followed by another probe.
6 " XXX: This doesn't work if followed by a comment.
7 -let s:oneProbe = '\%(BEGIN\|END\|ERROR\|\S\{-}:\S\{-}:\S\{-}:\S\{-}\)\_s*'
8 -exec 'syn match dtraceProbe "'.s:oneProbe.'\%(,\_s*'.s:oneProbe.'\)*\ze\_s\%({\|\/[^*]\|\%$\)"'
9 +let s:oneProbe = '\%(BEGIN\|END\|ERROR\|\S\{-}:\S\{-}:\S\{-}:\S*\)\_s*'
10 +exec 'syn match dtraceProbe "'.s:oneProbe.'\%(,\_s*'.s:oneProbe.'\)*\ze\_s*\%({\|\/[^*]\|\_s*\S\|\%$\)"'
12 " Note: We have to be careful to not make this match /* */ comments.
13 " Also be careful not to eat `c = a / b; b = a / 2;`. We use the same