backspace --> backslash
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
# HG changeset patch
# Parent ea399ac2c1b963b068beed88bfaff7620d345333
diff --git a/src/option.c b/src/option.c
--- a/src/option.c
+++ b/src/option.c
@@ -4700,8 +4700,8 @@
|| s[i] == ','
|| s[i] == NUL))
break;
- /* Count backspaces. Only a comma with an
- * even number of backspaces before it is
+ /* Count backslashes. Only a comma with an
+ * even number of backslashes before it is
* recognized as a separator */
if (s > origval && s[-1] == '\\')
++bs;