summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-17 18:31:18 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-17 18:31:18 +0200
commitb49e3563b920ff6d96b88a1f658182a986b2b1ea (patch)
tree793c72e810614ea91362024b7a159d1739e2138e
parentb9cdb37176a163f5047e149c3b568eee9883157c (diff)
downloadvim-git-b49e3563b920ff6d96b88a1f658182a986b2b1ea.tar.gz
patch 8.1.1183: typos in VisVim commentsv8.1.1183
Problem: Typos in VisVim comments. Solution: Correct the typos. (Christ van Willegen)
-rw-r--r--src/VisVim/Commands.cpp6
-rw-r--r--src/VisVim/OleAut.cpp2
-rw-r--r--src/VisVim/README_VisVim.txt2
-rw-r--r--src/version.c2
4 files changed, 7 insertions, 5 deletions
diff --git a/src/VisVim/Commands.cpp b/src/VisVim/Commands.cpp
index 569fbb87d..d2c3f838c 100644
--- a/src/VisVim/Commands.cpp
+++ b/src/VisVim/Commands.cpp
@@ -55,7 +55,7 @@ CCommands::~CCommands()
void CCommands::SetApplicationObject(IApplication * pApplication)
{
// This function assumes pApplication has already been AddRef'd
- // for us, which CDSAddIn did in it's QueryInterface call
+ // for us, which CDSAddIn did in its QueryInterface call
// just before it called us.
m_pApplication = pApplication;
if (! m_pApplication)
@@ -504,7 +504,7 @@ static BOOL VimOpenFile(BSTR& FileName, long LineNr)
{
// OLE automation object for com. with Vim
- // When the object goes out of scope, it's destructor destroys the OLE
+ // When the object goes out of scope, its destructor destroys the OLE
// connection;
// This is important to avoid blocking the object
// (in this memory corruption would be likely when terminating Vim
@@ -653,7 +653,7 @@ static void VimErrDiag(COleAutomationControl& VimOle)
VimOle.ErrDiag();
}
-// Change directory to the directory the file 'FileName' is in or it's parent
+// Change directory to the directory the file 'FileName' is in or its parent
// directory according to the setting of the global 'g_ChangeDir':
// 'FileName' is expected to contain an absolute DOS path including the drive
// letter.
diff --git a/src/VisVim/OleAut.cpp b/src/VisVim/OleAut.cpp
index 6902df9a6..2ff64920b 100644
--- a/src/VisVim/OleAut.cpp
+++ b/src/VisVim/OleAut.cpp
@@ -71,7 +71,7 @@ void COleAutomationControl::DeleteObject ()
}
// Creates an instance of the Automation object and
-// obtains it's IDispatch interface.
+// obtains its IDispatch interface.
//
// Parameters:
// ProgId ProgID of Automation object
diff --git a/src/VisVim/README_VisVim.txt b/src/VisVim/README_VisVim.txt
index 25b0fbd05..d96becf11 100644
--- a/src/VisVim/README_VisVim.txt
+++ b/src/VisVim/README_VisVim.txt
@@ -238,7 +238,7 @@ Change history
- Added an option to do a :cd before opening the file (having a file opened
by clicking it but finding out to be still in C:\Windows\system when trying to
open another file by ":e" can be annoying). Change directory can be
- done to the source file's directory or it's parent directory.
+ done to the source file's directory or its parent directory.
- Added some explanations to the error message for the CO_E_CLASSSTRING error
("Use OLE Vim and make sure to register...").
diff --git a/src/version.c b/src/version.c
index f265f6440..872e815fd 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1183,
+/**/
1182,
/**/
1181,