summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-14 16:07:48 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-14 16:07:48 +0200
commit35a4cfa200917dd171b1fff3cd5b6cee9add673d (patch)
treee12d8aac31bfe6c651bb4f5553658203c817ea55 /src/syntax.c
parent2d1a248762f069e470acde389ff4686a45d2f817 (diff)
downloadvim-git-35a4cfa200917dd171b1fff3cd5b6cee9add673d.tar.gz
patch 7.4.2209v7.4.2209
Problem: Cannot map <M-">. (Stephen Riehm) Solution: Solve the memory access problem in another way. (Dominique Pelle) Allow for using <M-\"> in a string.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 0face62b7..19f9bc468 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -7939,7 +7939,7 @@ do_highlight(
*/
for (p = arg, off = 0; off < 100 - 6 && *p; )
{
- len = trans_special(&p, buf + off, FALSE);
+ len = trans_special(&p, buf + off, FALSE, FALSE);
if (len > 0) /* recognized special char */
off += len;
else /* copy as normal char */