aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/regexp.c
diff options
context:
space:
mode:
authorJurica Bradaric <jbradaric@gmail.com>2016-01-23 15:37:05 +0100
committerJurica Bradaric <jbradaric@gmail.com>2016-01-24 09:15:59 +0100
commitd22a821ce303ff3267929e07df4ec14698d7e2c0 (patch)
tree94e8a2dfd0c88a851bd41262ff85329506397760 /src/nvim/regexp.c
parentee564701579e66a16245328d9e574dcb0752d517 (diff)
downloadrneovim-d22a821ce303ff3267929e07df4ec14698d7e2c0.tar.gz
rneovim-d22a821ce303ff3267929e07df4ec14698d7e2c0.tar.bz2
rneovim-d22a821ce303ff3267929e07df4ec14698d7e2c0.zip
regexp: Remove a leftover line.
It was replaced with `case 0xc3: case 0xc4: case 0xc5:`.
Diffstat (limited to 'src/nvim/regexp.c')
-rw-r--r--src/nvim/regexp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c
index b0b19d1199..608aa38466 100644
--- a/src/nvim/regexp.c
+++ b/src/nvim/regexp.c
@@ -801,7 +801,6 @@ static void reg_equi_class(int c)
case 0xc3: case 0xc4: case 0xc5:
CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd)
CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2)
- case '\303': case '\304': case '\305':
regmbc('A'); regmbc(0xc0); regmbc(0xc1);
regmbc(0xc2); regmbc(0xc3); regmbc(0xc4);
regmbc(0xc5);