comparison src/misc1.c @ 4352:04736b4030ec v7.3.925

updated for version 7.3.925 Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Mon, 06 May 2013 04:24:17 +0200
parents 923277a9cce4
children 77ecab3bb207
comparison
equal deleted inserted replaced
4351:e5137a5dcf15 4352:04736b4030ec
1652 * (but the amount does not need to match, there might be a mix of 1652 * (but the amount does not need to match, there might be a mix of
1653 * TABs and spaces). */ 1653 * TABs and spaces). */
1654 if (vim_iswhite(string[0])) 1654 if (vim_iswhite(string[0]))
1655 { 1655 {
1656 if (i == 0 || !vim_iswhite(line[i - 1])) 1656 if (i == 0 || !vim_iswhite(line[i - 1]))
1657 continue; /* missing shite space */ 1657 continue; /* missing white space */
1658 while (vim_iswhite(string[0])) 1658 while (vim_iswhite(string[0]))
1659 ++string; 1659 ++string;
1660 } 1660 }
1661 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j) 1661 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
1662 ; 1662 ;