Patch 8.2.1039
Problem: Cannot put NUL byte on clipboard.
Solution: Use the text length. (Christian Brabandt, closes #6312,
closes #6149)
Files: src/winclip.c, src/testdir/test_registers.vim
*** ../vim-8.2.1038/src/winclip.c 2020-02-12 21:15:37.543497435 +0100
--- src/winclip.c 2020-06-22 20:23:56.519089919 +0200
***************
*** 422,428 ****
}
}
! if (str != NULL && *str != NUL)
{
char_u *temp_clipboard;
--- 422,428 ----
}
}
! if (str != NULL && metadata.txtlen != 0)
{
char_u *temp_clipboard;
***************
*** 543,549 ****
if (lpszMem)
{
! vim_strncpy((char_u *)lpszMem, str, metadata.txtlen);
GlobalUnlock(hMem);
}
}
--- 543,549 ----
if (lpszMem)
{
! mch_memmove((char_u *)lpszMem, str, metadata.txtlen);
GlobalUnlock(hMem);
}
}
*** ../vim-8.2.1038/src/testdir/test_registers.vim 2020-06-22
19:10:51.689755096 +0200
--- src/testdir/test_registers.vim 2020-06-22 20:23:56.519089919 +0200
***************
*** 641,644 ****
--- 641,662 ----
call assert_equal(repeat('abcdefghijklmnopqrstuvwxyz', 312), str)
endfunc
+ " Test for clipboard registers with ASCII NUL
+ func Test_clipboard_nul()
+ CheckFeature clipboard_working
+ new
+
+ " Test for putting ASCII NUL into the clipboard
+ set clipboard=unnamed
+ call append(0, "\ntest")
+ normal ggyyp
+ call assert_equal("^@test^@", strtrans(getreg('*')))
+ call assert_equal(getline(1), getline(2))
+ let b = split(execute(":reg *"), "\n")
+ call assert_match('"\*\s*\^@test\^J',b[1])
+
+ set clipboard&vim
+ bwipe!
+ endfunc
+
" vim: shiftwidth=2 sts=2 expandtab
*** ../vim-8.2.1038/src/version.c 2020-06-22 20:22:15.683211781 +0200
--- src/version.c 2020-06-22 20:25:08.018992256 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 1039,
/**/
--
I bought a book on hair loss, but the pages kept falling out.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202006221834.05MIYraU1470326%40masaka.moolenaar.net.