Skip to content

Commit d672dde

Browse files
committed
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.
1 parent bc93ceb commit d672dde

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

Filelist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ SRC_ALL = \
1414
ci/if_ver*.vim \
1515
src/Make_all.mak \
1616
src/README.md \
17-
src/README_VIM9.md \
1817
src/alloc.h \
1918
src/arabic.c \
2019
src/arglist.c \
@@ -661,6 +660,7 @@ SRC_EXTRA = \
661660
RT_ALL = \
662661
README.txt \
663662
README.md \
663+
README_VIM9.md \
664664
LICENSE \
665665
CONTRIBUTING.md \
666666
runtime/bugreport.vim \

src/evalvars.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -669,6 +669,7 @@ heredoc_get(exarg_T *eap, char_u *cmd)
669669
* ":let var ..= expr" assignment command.
670670
* ":let [var1, var2] = expr" unpack list.
671671
* ":let var =<< ..." heredoc
672+
* ":let var: string" Vim9 declaration
672673
*/
673674
void
674675
ex_let(exarg_T *eap)

src/if_python3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,7 @@ LineToString(const char *str)
16411641
{
16421642
PyObject *result;
16431643
Py_ssize_t len = strlen(str);
1644-
char *tmp,*p;
1644+
char *tmp, *p;
16451645

16461646
tmp = alloc(len + 1);
16471647
p = tmp;

src/register.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2617,14 +2617,14 @@ getreg_wrap_one_line(char_u *s, int flags)
26172617
}
26182618

26192619
/*
2620-
* Return the contents of a register as a single allocated string.
2620+
* Return the contents of a register as a single allocated string or as a list.
26212621
* Used for "@r" in expressions and for getreg().
26222622
* Returns NULL for error.
26232623
* Flags:
26242624
* GREG_NO_EXPR Do not allow expression register
26252625
* GREG_EXPR_SRC For the expression register: return expression itself,
26262626
* not the result of its evaluation.
2627-
* GREG_LIST Return a list of lines in place of a single string.
2627+
* GREG_LIST Return a list of lines instead of a single string.
26282628
*/
26292629
char_u *
26302630
get_reg_contents(int regname, int flags)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ static char *(features[]) =
738738

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
319,
741743
/**/
742744
318,
743745
/**/

0 commit comments

Comments
 (0)