I was diving in the Vim source, and I found a small typo. Here's a patch to
fix it.
Thanks,
Rob
--
--
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
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
diff -r 05b791824368 src/regexp.c
--- a/src/regexp.c Wed May 22 23:00:40 2013 +0200
+++ b/src/regexp.c Thu May 23 09:05:19 2013 +0200
@@ -7773,7 +7773,7 @@
#ifdef DEBUG
static char_u regname[][30] = {
"AUTOMATIC Regexp Engine",
- "BACKTACKING Regexp Engine",
+ "BACKTRACKING Regexp Engine",
"NFA Regexp Engine"
};
#endif