patch 8.2.1010: build failure in libvterm with debug enabled

Problem:    Build failure in libvterm with debug enabled. (John Little)
Solution:   Use "->" instead of ".".
diff --git a/src/libvterm/src/state.c b/src/libvterm/src/state.c
index dd25726..c9a988c 100644
--- a/src/libvterm/src/state.c
+++ b/src/libvterm/src/state.c
@@ -291,7 +291,7 @@
 
   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 c702791..f1e274a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1010,
+/**/
     1009,
 /**/
     1008,