0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

patch 9.0.1453: typos in source code and tests

Problem:    Typos in source code and tests.
Solution:   Fi the typos. (Dominique Pellé, closes #12217)
This commit is contained in:
Dominique Pelle
2023-04-14 21:54:25 +01:00
committed by Bram Moolenaar
parent b7f6f93475
commit b49dfd0cf2
11 changed files with 17 additions and 15 deletions

View File

@@ -334,7 +334,7 @@ CVim::SendKeys(BSTR keys)
/* Reject strings too long to fit in the input buffer. Allow 10 bytes
* space to cover for the (remote) possibility that characters may enter
* the input buffer between now and when the WM_OLE message is actually
* processed. If more that 10 characters enter the input buffer in that
* processed. If more than 10 characters enter the input buffer in that
* time, the WM_OLE processing will simply fail to insert the characters.
*/
if ((int)(STRLEN(str)) > (vim_free_in_input_buf() - 10))