patch 8.2.0319: file missing in distribution, comments outdated
Problem: File missing in distribution, comments outdated.
Solution: Correct path of README file. Update comments.
diff --git a/src/evalvars.c b/src/evalvars.c
index 25d23c8..894ee28 100644
--- a/src/evalvars.c
+++ b/src/evalvars.c
@@ -669,6 +669,7 @@
* ":let var ..= expr" assignment command.
* ":let [var1, var2] = expr" unpack list.
* ":let var =<< ..." heredoc
+ * ":let var: string" Vim9 declaration
*/
void
ex_let(exarg_T *eap)
diff --git a/src/if_python3.c b/src/if_python3.c
index 8c22514..6e4b81a 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -1641,7 +1641,7 @@
{
PyObject *result;
Py_ssize_t len = strlen(str);
- char *tmp,*p;
+ char *tmp, *p;
tmp = alloc(len + 1);
p = tmp;
diff --git a/src/register.c b/src/register.c
index 6960002..943298e 100644
--- a/src/register.c
+++ b/src/register.c
@@ -2617,14 +2617,14 @@
}
/*
- * Return the contents of a register as a single allocated string.
+ * Return the contents of a register as a single allocated string or as a list.
* Used for "@r" in expressions and for getreg().
* Returns NULL for error.
* Flags:
* GREG_NO_EXPR Do not allow expression register
* GREG_EXPR_SRC For the expression register: return expression itself,
* not the result of its evaluation.
- * GREG_LIST Return a list of lines in place of a single string.
+ * GREG_LIST Return a list of lines instead of a single string.
*/
char_u *
get_reg_contents(int regname, int flags)
diff --git a/src/version.c b/src/version.c
index c5dccf4..e3ff8e1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 319,
+/**/
318,
/**/
317,