summaryrefslogtreecommitdiff
path: root/src/regexp.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-01-30 18:21:51 +0100
committerBram Moolenaar <Bram@vim.org>2013-01-30 18:21:51 +0100
commite337e5f634dcb0e74999d67286125a85423e38a9 (patch)
tree16ebf03e309b4acd7fe5f7ae51094df17f046273 /src/regexp.c
parentd2142213754df16fe11a2674716a7c33a012fa07 (diff)
downloadvim-git-e337e5f634dcb0e74999d67286125a85423e38a9.tar.gz
updated for version 7.3.796v7.3.796
Problem: "/[^\n]" does match at a line break. Solution: Make it do the same as "/.". (Christian Brabandt)
Diffstat (limited to 'src/regexp.c')
-rw-r--r--src/regexp.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/regexp.c b/src/regexp.c
index b6506a03a..d85ded8af 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -2397,13 +2397,15 @@ collection:
/* '\n' in range: also match NL */
if (ret != JUST_CALC_SIZE)
{
- if (*ret == ANYBUT)
- *ret = ANYBUT + ADD_NL;
- else if (*ret == ANYOF)
+ /* Using \n inside [^] does not change what
+ * matches. "[^\n]" is the same as ".". */
+ if (*ret == ANYOF)
+ {
*ret = ANYOF + ADD_NL;
+ *flagp |= HASNL;
+ }
/* else: must have had a \n already */
}
- *flagp |= HASNL;
regparse++;
startc = -1;
}
@@ -4344,6 +4346,7 @@ regmatch(scan)
break; /* Matched with EOW */
case ANY:
+ /* ANY does not match new lines. */
if (c == NUL)
status = RA_NOMATCH;
else