summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-19 17:20:41 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-19 17:20:41 +0200
commit128d3079635ae62786a13adc435d0063a64a014a (patch)
tree1bfb9ef0e0bc8d651d098e0064f9b87209c504b6
parentc5b1c20b6b1968873ea31edac1db659773b3b93d (diff)
downloadvim-git-128d3079635ae62786a13adc435d0063a64a014a.tar.gz
patch 8.2.1010: build failure in libvterm with debug enabledv8.2.1010
Problem: Build failure in libvterm with debug enabled. (John Little) Solution: Use "->" instead of ".".
-rw-r--r--src/libvterm/src/state.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/libvterm/src/state.c b/src/libvterm/src/state.c
index dd25726db..c9a988caa 100644
--- a/src/libvterm/src/state.c
+++ b/src/libvterm/src/state.c
@@ -291,7 +291,7 @@ static int on_text(const char bytes[], size_t len, void *user)
if (state->pos.row >= state->rows)
{
- DEBUG_LOG2("libvterm: on_text() pos.row %d out of range (rows = %d)\n", state->pos.row, state.rows);
+ DEBUG_LOG2("libvterm: on_text() pos.row %d out of range (rows = %d)\n", state->pos.row, state->rows);
return 0;
}
// We'll have at most len codepoints, plus one from a previous incomplete
diff --git a/src/version.c b/src/version.c
index c702791a1..f1e274ad0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1010,
+/**/
1009,
/**/
1008,