Mercurial > vim
annotate runtime/compiler/rst.vim @ 34207:5aee5855ccfe v9.1.0052
patch 9.1.0052: Patch 9.1.0041 causes regressions for users
Commit: https://github.com/vim/vim/commit/fa8c9715587a24562dd755c44dc13aef43d7d875
Author: Christian Brabandt <cb@256bit.org>
Date: Thu Jan 25 20:50:49 2024 +0100
patch 9.1.0052: Patch 9.1.0041 causes regressions for users
Problem: Patch 9.1.0041 causes regressions for users
(Gleb Fotengauer-Malinovskiy)
Solution: Revert 9.1.0041 and restore old behaviour
Revert "patch 9.1.0041: xxd -i may generate incorrect C statements"
This reverts commit 7062be13129985fe297b9a8e59c57b8f0db61b8f.
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 25 Jan 2024 21:00:05 +0100 |
parents | 4aae8146c21f |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
11347 | 2 " Compiler: sphinx >= 1.0.8, http://www.sphinx-doc.org |
3 " Description: reStructuredText Documentation Format | |
11062 | 4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> |
11347 | 5 " Latest Revision: 2017-03-31 |
7 | 6 |
7 if exists("current_compiler") | |
8 finish | |
9 endif | |
10 let current_compiler = "rst" | |
11 | |
12 let s:cpo_save = &cpo | |
3237 | 13 set cpo&vim |
7 | 14 |
11347 | 15 if exists(":CompilerSet") != 2 |
16 command -nargs=* CompilerSet setlocal <args> | |
17 endif | |
18 | |
19 CompilerSet errorformat= | |
20 \%f\\:%l:\ %tEBUG:\ %m, | |
21 \%f\\:%l:\ %tNFO:\ %m, | |
22 \%f\\:%l:\ %tARNING:\ %m, | |
23 \%f\\:%l:\ %tRROR:\ %m, | |
24 \%f\\:%l:\ %tEVERE:\ %m, | |
25 \%f\\:%s:\ %tARNING:\ %m, | |
26 \%f\\:%s:\ %tRROR:\ %m, | |
7 | 27 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', |
28 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', | |
29 \%DMaking\ %*\\a\ in\ %f | |
30 | |
31 let &cpo = s:cpo_save | |
32 unlet s:cpo_save |