patch 7.4.767
Problem:    --remote-tab-silent can fail on MS-Windows.
Solution:   Use single quotes to avoid problems with backslashes. (Idea by
            Weiyong Mao)
diff --git a/src/main.c b/src/main.c
index d9202c2..abcf0c9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -4008,15 +4008,15 @@
      *    if haslocaldir()
      *	    cd -
      *      lcd -
-     *    elseif getcwd() ==# "current path"
+     *    elseif getcwd() ==# 'current path'
      *      cd -
      *    endif
      *  endif
      */
     ga_concat(&ga, (char_u *)":if !exists('+acd')||!&acd|if haslocaldir()|");
-    ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# \"");
+    ga_concat(&ga, (char_u *)"cd -|lcd -|elseif getcwd() ==# '");
     ga_concat(&ga, cdp);
-    ga_concat(&ga, (char_u *)"\"|cd -|endif|endif<CR>");
+    ga_concat(&ga, (char_u *)"'|cd -|endif|endif<CR>");
     vim_free(cdp);
 
     if (sendReply)
diff --git a/src/version.c b/src/version.c
index ff02476..709bf99 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    767,
+/**/
     766,
 /**/
     765,