0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.3.925

Problem:    Typos in source files.
Solution:   Fix the typos. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2013-05-06 04:24:17 +02:00
parent 84e0f6ca9a
commit 84a05acc8c
72 changed files with 167 additions and 166 deletions

View File

@@ -645,7 +645,7 @@ static void GUIDtochar(const GUID &guid, char *GUID, int length)
CoTaskMemFree(wGUID);
}
// Delete a key and all of its descendents
// Delete a key and all of its descendants
static void RecursiveDeleteKey(HKEY hKeyParent, const char *child)
{
// Open the child
@@ -655,7 +655,7 @@ static void RecursiveDeleteKey(HKEY hKeyParent, const char *child)
if (result != ERROR_SUCCESS)
return;
// Enumerate all of the decendents of this child
// Enumerate all of the descendants of this child
FILETIME time;
char buffer[1024];
DWORD size = 1024;
@@ -663,7 +663,7 @@ static void RecursiveDeleteKey(HKEY hKeyParent, const char *child)
while (RegEnumKeyEx(hKeyChild, 0, buffer, &size, NULL,
NULL, NULL, &time) == S_OK)
{
// Delete the decendents of this child
// Delete the descendants of this child
RecursiveDeleteKey(hKeyChild, buffer);
size = 256;
}