mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
vim-patch:9.0.1479: small source file problems; outdated list of distrib. files (#23272)
Problem: Small source file problems; outdated list of distributed files.
Solution: Small updates to source files and list of distributed files.
f39d9e9dca
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -161,7 +161,7 @@ static char *get_buffcont(buffheader_T *buffer, int dozero)
|
||||
count += strlen(bp->b_str);
|
||||
}
|
||||
|
||||
if (count || dozero) {
|
||||
if (count > 0 || dozero) {
|
||||
p = xmalloc(count + 1);
|
||||
char *p2 = p;
|
||||
for (const buffblock_T *bp = buffer->bh_first.b_next;
|
||||
|
Reference in New Issue
Block a user