summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Hatori <shawn.hatori@gmail.com>2023-11-28 20:51:07 +0100
committerChristian Brabandt <cb@256bit.org>2023-11-28 20:51:07 +0100
commit8ceb99001b52d0c642e7532763ec9d8217ee86e3 (patch)
tree6e2baf2c98876899b78461ebce516af8b3f5bc76
parentfcaeb3d42b228e73c669b2fce78f1d3fe112769f (diff)
patch 9.0.2136: MSVC errorformat can be improvedv9.0.2136
Problem: MSVC errorformat can be improved Solution: parse error type and column number in MSVC errorformat closes: #13587 Signed-off-by: Shawn Hatori <shawn.hatori@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/option.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h
index 396c568d49..2d1ca2cdea 100644
--- a/src/option.h
+++ b/src/option.h
@@ -87,7 +87,7 @@ typedef enum {
# define DFLT_EFM "%f>%l:%c:%t:%n:%m,%f:%l: %t%*\\D%n: %m,%f %l %t%*\\D%n: %m,%*[^\"]\"%f\"%*\\D%l: %m,%f:%l:%m,%f|%l| %m"
#else
# if defined(MSWIN)
-# define DFLT_EFM "%f(%l) \\=: %t%*\\D%n: %m,%*[^\"]\"%f\"%*\\D%l: %m,%f(%l) \\=: %m,%*[^ ] %f %l: %m,%f:%l:%c:%m,%f(%l):%m,%f:%l:%m,%f|%l| %m"
+# define DFLT_EFM "%f(%l): %t%*\\D%n: %m,%f(%l\\,%c): %t%*\\D%n: %m,%f(%l) \\=: %t%*\\D%n: %m,%*[^\"]\"%f\"%*\\D%l: %m,%f(%l) \\=: %m,%*[^ ] %f %l: %m,%f:%l:%c:%m,%f(%l):%m,%f:%l:%m,%f|%l| %m"
# else
# if defined(__QNX__)
# define DFLT_EFM "%f(%l):%*[^WE]%t%*\\D%n:%m,%f|%l| %m"
diff --git a/src/version.c b/src/version.c
index 55fbcc5b2e..f408e0beb3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2136,
+/**/
2135,
/**/
2134,