patch 8.2.3393: escaping for fish shell is skipping some characters

Problem:    Escaping for fish shell is skipping some characters.
Solution:   Escape character after backslash if needed. (Jason Cox,
            closes #8827)
diff --git a/src/strings.c b/src/strings.c
index 0c9e20d..d2d37d8 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -281,6 +281,7 @@
 	    {
 		*d++ = '\\';
 		*d++ = *p++;
+		continue;
 	    }
 
 	    MB_COPY_CHAR(p, d);