From: Perry Rapp Date: Sat, 25 Oct 2003 02:31:31 +0000 (+0000) Subject: Fix spelling of "delimiter" in comments. X-Git-Tag: 2.16.5~7602 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=458b14569fa3f788eb8ff472521dbd2e68394cba;p=winmerge-jp%2Fwinmerge-jp.git Fix spelling of "delimiter" in comments. --- diff --git a/Src/MainFrm.cpp b/Src/MainFrm.cpp index 9611c4249..d1f3bd23e 100644 --- a/Src/MainFrm.cpp +++ b/Src/MainFrm.cpp @@ -468,8 +468,8 @@ void CMainFrame::OnHelpGnulicense() * @brief Reads words from a file deliminated by charset * * Reads words from a file deliminated by charset with one slight twist. - * If the next char in the file to be read is one of the characters inside the delimator, - * then the word returned will be a word consisting only of delimators. + * If the next char in the file to be read is one of the characters inside the delimiter, + * then the word returned will be a word consisting only of delimiters. * * @note pfile is not incremented past the word returned */ @@ -498,7 +498,7 @@ BOOL CMainFrame::GetWordFile(HANDLE pfile, TCHAR * buffer, TCHAR * charset) if (ctemp == *pcharset) break; } - if (*pcharset != NULL)//means that cbuffer[0] is a delimator character + if (*pcharset != NULL)//means that cbuffer[0] is a delimiter character delimword = TRUE; FirstRead = TRUE; } @@ -522,7 +522,7 @@ BOOL CMainFrame::GetWordFile(HANDLE pfile, TCHAR * buffer, TCHAR * charset) { for (pcharset = charset;*pcharset;pcharset++) { - //if next char is equal to a delimator or we want delimwords stop the adding + //if next char is equal to a delimiter or we want delimwords stop the adding if (ctemp == *pcharset) { SetFilePointer(pfile,-1,NULL,FILE_CURRENT); @@ -542,7 +542,7 @@ BOOL CMainFrame::GetWordFile(HANDLE pfile, TCHAR * buffer, TCHAR * charset) delimMatch = FALSE; for (pcharset = charset;*pcharset;pcharset++) { - //if next char is equal to a delimator or we want delimwords stop the adding + //if next char is equal to a delimiter or we want delimwords stop the adding if (ctemp == *pcharset) { delimMatch = TRUE; @@ -1582,7 +1582,7 @@ BOOL CMainFrame::ReLinkVCProj(CString strSavePath,CString * psError) WriteFile(tfile, stemp, stemp.GetLength(), &numwritten, NULL); GetWordFile(hfile, buffer, _T(",\n"));//for junking - GetWordFile(hfile, buffer, _T(",\n"));//get the next delimator + GetWordFile(hfile, buffer, _T(",\n"));//get the next delimiter if (!_tcscmp(buffer, _T("\n"))) { WriteFile(tfile, _T("\""), 1, &numwritten, NULL); diff --git a/Src/readme.txt b/Src/readme.txt index eaf54fb29..54401ee75 100644 --- a/Src/readme.txt +++ b/Src/readme.txt @@ -1,3 +1,7 @@ +2003-10-25 Perry + Fix spelling of "delimiter" in comments. + WinMerge: MainFrm.cpp + 2003-10-25 WinMerge experimental release 2.1.3.5 (cvs) 2003-10-25 Perry