]> granicus.if.org Git - vim/commitdiff
patch 8.0.0012 v8.0.0012
authorBram Moolenaar <Bram@vim.org>
Sun, 25 Sep 2016 19:45:05 +0000 (21:45 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 25 Sep 2016 19:45:05 +0000 (21:45 +0200)
Problem:    Typos in comments.
Solution:   Change "its" to "it's". (Matthew Brener, closes #1088)

src/evalfunc.c
src/main.aap
src/nbdebug.c
src/netbeans.c
src/quickfix.c
src/version.c
src/workshop.c
src/wsdebug.c

index 3207441c2d030143bf418a007ab145769dbbdeb9..e89bc30083c647450dd1533899b7834aed018efe 100644 (file)
@@ -6874,7 +6874,7 @@ libcall_common(typval_T *argvars, typval_T *rettv, int type)
        return;
 
 #ifdef FEAT_LIBCALL
-    /* The first two args must be strings, otherwise its meaningless */
+    /* The first two args must be strings, otherwise it's meaningless */
     if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
     {
        string_in = NULL;
index 452cd978bec0103de69deaff9bb060333332dddd..bedbbb5e3a951739f936acd756732d2416de7c94 100644 (file)
@@ -69,7 +69,7 @@
                     --with-mac-arch=$arch
                     --cache-file=auto/config.cache
 
-    # Configure arguments: create an empty "config.arg" file when its missing
+    # Configure arguments: create an empty "config.arg" file when it's missing
     config.arg:
         :touch {exist} config.arg
 
index c553d2578fa7132e7e3a8bfd9cb8f72e69fe405e..7c9768129e752ed38be2ac6c534984093e2e875c 100644 (file)
@@ -41,7 +41,7 @@ static int     errorHandler(Display *, XErrorEvent *);
 
 /*
  * nbdebug_wait        -   This function can be used to delay or stop execution of vim.
- *                 Its normally used to delay startup while attaching a
+ *                 It's normally used to delay startup while attaching a
  *                 debugger to a running process. Since workshop starts gvim
  *                 from a background process this is the only way to debug
  *                 startup problems.
index 7ad812dce3a97a6a9f3c1398657d8e74c34f4df9..cc5560412724018a6881517315f1e59afd785ad3 100644 (file)
@@ -2156,7 +2156,7 @@ nb_do_cmd(
        else if (streq((char *)cmd, "save"))
        {
            /*
-            * NOTE - This command is obsolete wrt NetBeans. Its left in
+            * NOTE - This command is obsolete wrt NetBeans. It's left in
             * only for historical reasons.
             */
            if (buf == NULL || buf->bufp == NULL)
@@ -2242,7 +2242,7 @@ nb_do_cmd(
 
     /*
      * Is this needed? I moved the netbeans_Xt_connect() later during startup
-     * and it may no longer be necessary. If its not needed then needupdate
+     * and it may no longer be necessary. If it's not needed then needupdate
      * and do_update can also be removed.
      */
     if (buf != NULL && buf->initDone && do_update)
@@ -2856,7 +2856,7 @@ netbeans_unmodified(buf_T *bufp UNUSED)
 }
 
 /*
- * Send a button release event back to netbeans. Its up to netbeans
+ * Send a button release event back to netbeans. It's up to netbeans
  * to decide what to do (if anything) with this event.
  */
     void
@@ -3453,7 +3453,7 @@ pos2off(buf_T *buf, pos_T *pos)
 
 
 /*
- * This message is printed after NetBeans opens a new file. Its
+ * This message is printed after NetBeans opens a new file. It's
  * similar to the message readfile() uses, but since NetBeans
  * doesn't normally call readfile, we do our own.
  */
index 2f5256be4245f422245c877151989e08e6793f2c..51c894bc63e396f1f63cd2fc469b7d20295ff7be 100644 (file)
@@ -3569,7 +3569,7 @@ get_mef_name(void)
        STRCAT(name, p + 2);
        if (mch_getperm(name) < 0
 #ifdef HAVE_LSTAT
-                   /* Don't accept a symbolic link, its a security risk. */
+                   /* Don't accept a symbolic link, it's a security risk. */
                    && mch_lstat((char *)name, &sb) < 0
 #endif
                )
index 036e99adfb31ae6eb0d3c5edbc2da9ecd55f61f4..695c281acbc5d666aa34ebd158064fd40d9ece45 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    12,
 /**/
     11,
 /**/
index c1a31981d8a0ead0dde6536ad84d4e9d8b1efe1b..0b9774fa5bc9a448c35563ac6ba1b93bac35919a 100644 (file)
@@ -71,7 +71,7 @@ static Boolean         workshopHotKeysEnabled = False;
 
 /*
  * The following enum is from <gp_dbx/gp_dbx_common.h>. We can't include it
- * here because its C++.
+ * here because it's C++.
  */
 enum
 {
@@ -1752,7 +1752,7 @@ setDollarVim(
  *                     directory. This is a Sun Visual WorkShop requirement!
  *
  * Note:               We override a user's $VIM because it won't have the
- *                     WorkShop specific files. S/he may not like this but its
+ *                     WorkShop specific files. S/he may not like this but it's
  *                     better than getting the wrong files (especially as the
  *                     user is likely to have $VIM set to 5.4 or later).
  */
index 66b378ca1991e298b84f2dab0c62f944be704215..4bb7205fe34dd7181eb78fdad7920aa3668c85b1 100644 (file)
@@ -47,7 +47,7 @@ static int     errorHandler(Display *, XErrorEvent *);
 
 /*
  * wsdebug_wait        -   This function can be used to delay or stop execution of vim.
- *                 Its normally used to delay startup while attaching a
+ *                 It's normally used to delay startup while attaching a
  *                 debugger to a running process. Since workshop starts gvim
  *                 from a background process this is the only way to debug
  *                 startup problems.