comparison src/os_win32.c @ 19195:2ef19eed524a v8.2.0156

patch 8.2.0156: various typos in source files and tests Commit: https://github.com/vim/vim/commit/4b96df5a017a04141c4e901b1fc5704a3ca48099 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:00:26 2020 +0100 patch 8.2.0156: various typos in source files and tests Problem: Various typos in source files and tests. Solution: Fix the typos. (Emir Sari, closes https://github.com/vim/vim/issues/5532)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:15:05 +0100
parents bf8eb950df61
children c189e3826ec3
comparison
equal deleted inserted replaced
19194:9986e645676b 19195:2ef19eed524a
6925 // ...and the base of the stack. 6925 // ...and the base of the stack.
6926 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0) 6926 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
6927 return 0; 6927 return 0;
6928 pStackBase = (BYTE*)mbi.AllocationBase; 6928 pStackBase = (BYTE*)mbi.AllocationBase;
6929 6929
6930 // ...and the page thats min_stack_req pages away from stack base; this is 6930 // ...and the page that's min_stack_req pages away from stack base; this is
6931 // the lowest page we could use. 6931 // the lowest page we could use.
6932 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize; 6932 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
6933 6933
6934 { 6934 {
6935 // We want the first committed page in the stack Start at the stack 6935 // We want the first committed page in the stack Start at the stack