|
|
3ef2ca |
To: vim_dev@googlegroups.com
|
|
|
3ef2ca |
Subject: Patch 7.4.028
|
|
|
3ef2ca |
Fcc: outbox
|
|
|
3ef2ca |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
3ef2ca |
Mime-Version: 1.0
|
|
|
3ef2ca |
Content-Type: text/plain; charset=UTF-8
|
|
|
3ef2ca |
Content-Transfer-Encoding: 8bit
|
|
|
3ef2ca |
------------
|
|
|
3ef2ca |
|
|
|
3ef2ca |
Patch 7.4.028
|
|
|
3ef2ca |
Problem: Equivalence classes are not working for multi-byte characters.
|
|
|
3ef2ca |
Solution: Copy the rules from the old to the new regexp engine. Add a test
|
|
|
3ef2ca |
to check both engines.
|
|
|
3ef2ca |
Files: src/regexp_nfa.c, src/testdir/test44.in, src/testdir/test99.in,
|
|
|
3ef2ca |
src/testdir/test99.ok, src/testdir/Make_amiga.mak,
|
|
|
3ef2ca |
src/testdir/Make_dos.mak, src/testdir/Make_ming.mak,
|
|
|
3ef2ca |
src/testdir/Make_os2.mak, src/testdir/Make_vms.mms,
|
|
|
3ef2ca |
src/testdir/Makefile
|
|
|
3ef2ca |
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/regexp_nfa.c 2013-09-05 21:15:38.000000000 +0200
|
|
|
3ef2ca |
--- src/regexp_nfa.c 2013-09-19 16:40:08.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 742,748 ****
|
|
|
3ef2ca |
nfa_emit_equi_class(c)
|
|
|
3ef2ca |
int c;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
! #define EMIT2(c) EMIT(c); EMIT(NFA_CONCAT);
|
|
|
3ef2ca |
|
|
|
3ef2ca |
#ifdef FEAT_MBYTE
|
|
|
3ef2ca |
if (enc_utf8 || STRCMP(p_enc, "latin1") == 0
|
|
|
3ef2ca |
--- 742,753 ----
|
|
|
3ef2ca |
nfa_emit_equi_class(c)
|
|
|
3ef2ca |
int c;
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
! #define EMIT2(c) EMIT(c); EMIT(NFA_CONCAT);
|
|
|
3ef2ca |
! #ifdef FEAT_MBYTE
|
|
|
3ef2ca |
! # define EMITMBC(c) EMIT(c); EMIT(NFA_CONCAT);
|
|
|
3ef2ca |
! #else
|
|
|
3ef2ca |
! # define EMITMBC(c)
|
|
|
3ef2ca |
! #endif
|
|
|
3ef2ca |
|
|
|
3ef2ca |
#ifdef FEAT_MBYTE
|
|
|
3ef2ca |
if (enc_utf8 || STRCMP(p_enc, "latin1") == 0
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 753,844 ****
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
case 'A': case 0300: case 0301: case 0302:
|
|
|
3ef2ca |
case 0303: case 0304: case 0305:
|
|
|
3ef2ca |
! EMIT2('A'); EMIT2(0300); EMIT2(0301);
|
|
|
3ef2ca |
! EMIT2(0302); EMIT2(0303); EMIT2(0304);
|
|
|
3ef2ca |
! EMIT2(0305);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'C': case 0307:
|
|
|
3ef2ca |
! EMIT2('C'); EMIT2(0307);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'E': case 0310: case 0311: case 0312: case 0313:
|
|
|
3ef2ca |
! EMIT2('E'); EMIT2(0310); EMIT2(0311);
|
|
|
3ef2ca |
! EMIT2(0312); EMIT2(0313);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'I': case 0314: case 0315: case 0316: case 0317:
|
|
|
3ef2ca |
! EMIT2('I'); EMIT2(0314); EMIT2(0315);
|
|
|
3ef2ca |
! EMIT2(0316); EMIT2(0317);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'N': case 0321:
|
|
|
3ef2ca |
! EMIT2('N'); EMIT2(0321);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'O': case 0322: case 0323: case 0324: case 0325:
|
|
|
3ef2ca |
! case 0326:
|
|
|
3ef2ca |
! EMIT2('O'); EMIT2(0322); EMIT2(0323);
|
|
|
3ef2ca |
! EMIT2(0324); EMIT2(0325); EMIT2(0326);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'U': case 0331: case 0332: case 0333: case 0334:
|
|
|
3ef2ca |
! EMIT2('U'); EMIT2(0331); EMIT2(0332);
|
|
|
3ef2ca |
! EMIT2(0333); EMIT2(0334);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'Y': case 0335:
|
|
|
3ef2ca |
! EMIT2('Y'); EMIT2(0335);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'a': case 0340: case 0341: case 0342:
|
|
|
3ef2ca |
case 0343: case 0344: case 0345:
|
|
|
3ef2ca |
! EMIT2('a'); EMIT2(0340); EMIT2(0341);
|
|
|
3ef2ca |
! EMIT2(0342); EMIT2(0343); EMIT2(0344);
|
|
|
3ef2ca |
! EMIT2(0345);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'c': case 0347:
|
|
|
3ef2ca |
! EMIT2('c'); EMIT2(0347);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'e': case 0350: case 0351: case 0352: case 0353:
|
|
|
3ef2ca |
! EMIT2('e'); EMIT2(0350); EMIT2(0351);
|
|
|
3ef2ca |
! EMIT2(0352); EMIT2(0353);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'i': case 0354: case 0355: case 0356: case 0357:
|
|
|
3ef2ca |
! EMIT2('i'); EMIT2(0354); EMIT2(0355);
|
|
|
3ef2ca |
! EMIT2(0356); EMIT2(0357);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'n': case 0361:
|
|
|
3ef2ca |
! EMIT2('n'); EMIT2(0361);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'o': case 0362: case 0363: case 0364: case 0365:
|
|
|
3ef2ca |
! case 0366:
|
|
|
3ef2ca |
! EMIT2('o'); EMIT2(0362); EMIT2(0363);
|
|
|
3ef2ca |
! EMIT2(0364); EMIT2(0365); EMIT2(0366);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'u': case 0371: case 0372: case 0373: case 0374:
|
|
|
3ef2ca |
! EMIT2('u'); EMIT2(0371); EMIT2(0372);
|
|
|
3ef2ca |
! EMIT2(0373); EMIT2(0374);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'y': case 0375: case 0377:
|
|
|
3ef2ca |
! EMIT2('y'); EMIT2(0375); EMIT2(0377);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! default:
|
|
|
3ef2ca |
! return FAIL;
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! EMIT(c);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
#undef EMIT2
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/*
|
|
|
3ef2ca |
--- 758,1095 ----
|
|
|
3ef2ca |
{
|
|
|
3ef2ca |
case 'A': case 0300: case 0301: case 0302:
|
|
|
3ef2ca |
case 0303: case 0304: case 0305:
|
|
|
3ef2ca |
! CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd)
|
|
|
3ef2ca |
! CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2)
|
|
|
3ef2ca |
! EMIT2('A'); EMIT2(0300); EMIT2(0301); EMIT2(0302);
|
|
|
3ef2ca |
! EMIT2(0303); EMIT2(0304); EMIT2(0305);
|
|
|
3ef2ca |
! EMITMBC(0x100) EMITMBC(0x102) EMITMBC(0x104)
|
|
|
3ef2ca |
! EMITMBC(0x1cd) EMITMBC(0x1de) EMITMBC(0x1e0)
|
|
|
3ef2ca |
! EMITMBC(0x1ea2)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06)
|
|
|
3ef2ca |
! EMIT2('B'); EMITMBC(0x1e02) EMITMBC(0x1e06)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'C': case 0307:
|
|
|
3ef2ca |
! CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c)
|
|
|
3ef2ca |
! EMIT2('C'); EMIT2(0307); EMITMBC(0x106) EMITMBC(0x108)
|
|
|
3ef2ca |
! EMITMBC(0x10a) EMITMBC(0x10c)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a)
|
|
|
3ef2ca |
! CASEMBC(0x1e0e) CASEMBC(0x1e10)
|
|
|
3ef2ca |
! EMIT2('D'); EMITMBC(0x10e) EMITMBC(0x110) EMITMBC(0x1e0a)
|
|
|
3ef2ca |
! EMITMBC(0x1e0e) EMITMBC(0x1e10)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'E': case 0310: case 0311: case 0312: case 0313:
|
|
|
3ef2ca |
! CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118)
|
|
|
3ef2ca |
! CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc)
|
|
|
3ef2ca |
! EMIT2('E'); EMIT2(0310); EMIT2(0311); EMIT2(0312);
|
|
|
3ef2ca |
! EMIT2(0313);
|
|
|
3ef2ca |
! EMITMBC(0x112) EMITMBC(0x114) EMITMBC(0x116)
|
|
|
3ef2ca |
! EMITMBC(0x118) EMITMBC(0x11a) EMITMBC(0x1eba)
|
|
|
3ef2ca |
! EMITMBC(0x1ebc)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'F': CASEMBC(0x1e1e)
|
|
|
3ef2ca |
! EMIT2('F'); EMITMBC(0x1e1e)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120)
|
|
|
3ef2ca |
! CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4)
|
|
|
3ef2ca |
! CASEMBC(0x1e20)
|
|
|
3ef2ca |
! EMIT2('G'); EMITMBC(0x11c) EMITMBC(0x11e) EMITMBC(0x120)
|
|
|
3ef2ca |
! EMITMBC(0x122) EMITMBC(0x1e4) EMITMBC(0x1e6)
|
|
|
3ef2ca |
! EMITMBC(0x1f4) EMITMBC(0x1e20)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22)
|
|
|
3ef2ca |
! CASEMBC(0x1e26) CASEMBC(0x1e28)
|
|
|
3ef2ca |
! EMIT2('H'); EMITMBC(0x124) EMITMBC(0x126) EMITMBC(0x1e22)
|
|
|
3ef2ca |
! EMITMBC(0x1e26) EMITMBC(0x1e28)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'I': case 0314: case 0315: case 0316: case 0317:
|
|
|
3ef2ca |
! CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e)
|
|
|
3ef2ca |
! CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8)
|
|
|
3ef2ca |
! EMIT2('I'); EMIT2(0314); EMIT2(0315); EMIT2(0316);
|
|
|
3ef2ca |
! EMIT2(0317); EMITMBC(0x128) EMITMBC(0x12a)
|
|
|
3ef2ca |
! EMITMBC(0x12c) EMITMBC(0x12e) EMITMBC(0x130)
|
|
|
3ef2ca |
! EMITMBC(0x1cf) EMITMBC(0x1ec8)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'J': CASEMBC(0x134)
|
|
|
3ef2ca |
! EMIT2('J'); EMITMBC(0x134)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30)
|
|
|
3ef2ca |
! CASEMBC(0x1e34)
|
|
|
3ef2ca |
! EMIT2('K'); EMITMBC(0x136) EMITMBC(0x1e8) EMITMBC(0x1e30)
|
|
|
3ef2ca |
! EMITMBC(0x1e34)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d)
|
|
|
3ef2ca |
! CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a)
|
|
|
3ef2ca |
! EMIT2('L'); EMITMBC(0x139) EMITMBC(0x13b) EMITMBC(0x13d)
|
|
|
3ef2ca |
! EMITMBC(0x13f) EMITMBC(0x141) EMITMBC(0x1e3a)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40)
|
|
|
3ef2ca |
! EMIT2('M'); EMITMBC(0x1e3e) EMITMBC(0x1e40)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'N': case 0321:
|
|
|
3ef2ca |
! CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44)
|
|
|
3ef2ca |
! CASEMBC(0x1e48)
|
|
|
3ef2ca |
! EMIT2('N'); EMIT2(0321); EMITMBC(0x143) EMITMBC(0x145)
|
|
|
3ef2ca |
! EMITMBC(0x147) EMITMBC(0x1e44) EMITMBC(0x1e48)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'O': case 0322: case 0323: case 0324: case 0325:
|
|
|
3ef2ca |
! case 0326: case 0330:
|
|
|
3ef2ca |
! CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0)
|
|
|
3ef2ca |
! CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece)
|
|
|
3ef2ca |
! EMIT2('O'); EMIT2(0322); EMIT2(0323); EMIT2(0324);
|
|
|
3ef2ca |
! EMIT2(0325); EMIT2(0326); EMIT2(0330);
|
|
|
3ef2ca |
! EMITMBC(0x14c) EMITMBC(0x14e) EMITMBC(0x150)
|
|
|
3ef2ca |
! EMITMBC(0x1a0) EMITMBC(0x1d1) EMITMBC(0x1ea)
|
|
|
3ef2ca |
! EMITMBC(0x1ec) EMITMBC(0x1ece)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'P': case 0x1e54: case 0x1e56:
|
|
|
3ef2ca |
! EMIT2('P'); EMITMBC(0x1e54) EMITMBC(0x1e56)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158)
|
|
|
3ef2ca |
! CASEMBC(0x1e58) CASEMBC(0x1e5e)
|
|
|
3ef2ca |
! EMIT2('R'); EMITMBC(0x154) EMITMBC(0x156) EMITMBC(0x158)
|
|
|
3ef2ca |
! EMITMBC(0x1e58) EMITMBC(0x1e5e)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e)
|
|
|
3ef2ca |
! CASEMBC(0x160) CASEMBC(0x1e60)
|
|
|
3ef2ca |
! EMIT2('S'); EMITMBC(0x15a) EMITMBC(0x15c) EMITMBC(0x15e)
|
|
|
3ef2ca |
! EMITMBC(0x160) EMITMBC(0x1e60)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166)
|
|
|
3ef2ca |
! CASEMBC(0x1e6a) CASEMBC(0x1e6e)
|
|
|
3ef2ca |
! EMIT2('T'); EMITMBC(0x162) EMITMBC(0x164) EMITMBC(0x166)
|
|
|
3ef2ca |
! EMITMBC(0x1e6a) EMITMBC(0x1e6e)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'U': case 0331: case 0332: case 0333: case 0334:
|
|
|
3ef2ca |
! CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e)
|
|
|
3ef2ca |
! CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3)
|
|
|
3ef2ca |
! CASEMBC(0x1ee6)
|
|
|
3ef2ca |
! EMIT2('U'); EMIT2(0331); EMIT2(0332); EMIT2(0333);
|
|
|
3ef2ca |
! EMIT2(0334); EMITMBC(0x168) EMITMBC(0x16a)
|
|
|
3ef2ca |
! EMITMBC(0x16c) EMITMBC(0x16e) EMITMBC(0x170)
|
|
|
3ef2ca |
! EMITMBC(0x172) EMITMBC(0x1af) EMITMBC(0x1d3)
|
|
|
3ef2ca |
! EMITMBC(0x1ee6)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'V': CASEMBC(0x1e7c)
|
|
|
3ef2ca |
! EMIT2('V'); EMITMBC(0x1e7c)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82)
|
|
|
3ef2ca |
! CASEMBC(0x1e84) CASEMBC(0x1e86)
|
|
|
3ef2ca |
! EMIT2('W'); EMITMBC(0x174) EMITMBC(0x1e80) EMITMBC(0x1e82)
|
|
|
3ef2ca |
! EMITMBC(0x1e84) EMITMBC(0x1e86)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c)
|
|
|
3ef2ca |
! EMIT2('X'); EMITMBC(0x1e8a) EMITMBC(0x1e8c)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'Y': case 0335:
|
|
|
3ef2ca |
! CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2)
|
|
|
3ef2ca |
! CASEMBC(0x1ef6) CASEMBC(0x1ef8)
|
|
|
3ef2ca |
! EMIT2('Y'); EMIT2(0335); EMITMBC(0x176) EMITMBC(0x178)
|
|
|
3ef2ca |
! EMITMBC(0x1e8e) EMITMBC(0x1ef2) EMITMBC(0x1ef6)
|
|
|
3ef2ca |
! EMITMBC(0x1ef8)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d)
|
|
|
3ef2ca |
! CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94)
|
|
|
3ef2ca |
! EMIT2('Z'); EMITMBC(0x179) EMITMBC(0x17b) EMITMBC(0x17d)
|
|
|
3ef2ca |
! EMITMBC(0x1b5) EMITMBC(0x1e90) EMITMBC(0x1e94)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'a': case 0340: case 0341: case 0342:
|
|
|
3ef2ca |
case 0343: case 0344: case 0345:
|
|
|
3ef2ca |
! CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce)
|
|
|
3ef2ca |
! CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3)
|
|
|
3ef2ca |
! EMIT2('a'); EMIT2(0340); EMIT2(0341); EMIT2(0342);
|
|
|
3ef2ca |
! EMIT2(0343); EMIT2(0344); EMIT2(0345);
|
|
|
3ef2ca |
! EMITMBC(0x101) EMITMBC(0x103) EMITMBC(0x105)
|
|
|
3ef2ca |
! EMITMBC(0x1ce) EMITMBC(0x1df) EMITMBC(0x1e1)
|
|
|
3ef2ca |
! EMITMBC(0x1ea3)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07)
|
|
|
3ef2ca |
! EMIT2('b'); EMITMBC(0x1e03) EMITMBC(0x1e07)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'c': case 0347:
|
|
|
3ef2ca |
! CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d)
|
|
|
3ef2ca |
! EMIT2('c'); EMIT2(0347); EMITMBC(0x107) EMITMBC(0x109)
|
|
|
3ef2ca |
! EMITMBC(0x10b) EMITMBC(0x10d)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1d0b)
|
|
|
3ef2ca |
! CASEMBC(0x1e11)
|
|
|
3ef2ca |
! EMIT2('d'); EMITMBC(0x10f) EMITMBC(0x111) EMITMBC(0x1e0b)
|
|
|
3ef2ca |
! EMITMBC(0x01e0f) EMITMBC(0x1e11)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'e': case 0350: case 0351: case 0352: case 0353:
|
|
|
3ef2ca |
! CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119)
|
|
|
3ef2ca |
! CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd)
|
|
|
3ef2ca |
! EMIT2('e'); EMIT2(0350); EMIT2(0351); EMIT2(0352);
|
|
|
3ef2ca |
! EMIT2(0353); EMITMBC(0x113) EMITMBC(0x115)
|
|
|
3ef2ca |
! EMITMBC(0x117) EMITMBC(0x119) EMITMBC(0x11b)
|
|
|
3ef2ca |
! EMITMBC(0x1ebb) EMITMBC(0x1ebd)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'f': CASEMBC(0x1e1f)
|
|
|
3ef2ca |
! EMIT2('f'); EMITMBC(0x1e1f)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121)
|
|
|
3ef2ca |
! CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5)
|
|
|
3ef2ca |
! CASEMBC(0x1e21)
|
|
|
3ef2ca |
! EMIT2('g'); EMITMBC(0x11d) EMITMBC(0x11f) EMITMBC(0x121)
|
|
|
3ef2ca |
! EMITMBC(0x123) EMITMBC(0x1e5) EMITMBC(0x1e7)
|
|
|
3ef2ca |
! EMITMBC(0x1f5) EMITMBC(0x1e21)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23)
|
|
|
3ef2ca |
! CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96)
|
|
|
3ef2ca |
! EMIT2('h'); EMITMBC(0x125) EMITMBC(0x127) EMITMBC(0x1e23)
|
|
|
3ef2ca |
! EMITMBC(0x1e27) EMITMBC(0x1e29) EMITMBC(0x1e96)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'i': case 0354: case 0355: case 0356: case 0357:
|
|
|
3ef2ca |
! CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f)
|
|
|
3ef2ca |
! CASEMBC(0x1d0) CASEMBC(0x1ec9)
|
|
|
3ef2ca |
! EMIT2('i'); EMIT2(0354); EMIT2(0355); EMIT2(0356);
|
|
|
3ef2ca |
! EMIT2(0357); EMITMBC(0x129) EMITMBC(0x12b)
|
|
|
3ef2ca |
! EMITMBC(0x12d) EMITMBC(0x12f) EMITMBC(0x1d0)
|
|
|
3ef2ca |
! EMITMBC(0x1ec9)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'j': CASEMBC(0x135) CASEMBC(0x1f0)
|
|
|
3ef2ca |
! EMIT2('j'); EMITMBC(0x135) EMITMBC(0x1f0)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31)
|
|
|
3ef2ca |
! CASEMBC(0x1e35)
|
|
|
3ef2ca |
! EMIT2('k'); EMITMBC(0x137) EMITMBC(0x1e9) EMITMBC(0x1e31)
|
|
|
3ef2ca |
! EMITMBC(0x1e35)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e)
|
|
|
3ef2ca |
! CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b)
|
|
|
3ef2ca |
! EMIT2('l'); EMITMBC(0x13a) EMITMBC(0x13c) EMITMBC(0x13e)
|
|
|
3ef2ca |
! EMITMBC(0x140) EMITMBC(0x142) EMITMBC(0x1e3b)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41)
|
|
|
3ef2ca |
! EMIT2('m'); EMITMBC(0x1e3f) EMITMBC(0x1e41)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'n': case 0361:
|
|
|
3ef2ca |
! CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149)
|
|
|
3ef2ca |
! CASEMBC(0x1e45) CASEMBC(0x1e49)
|
|
|
3ef2ca |
! EMIT2('n'); EMIT2(0361); EMITMBC(0x144) EMITMBC(0x146)
|
|
|
3ef2ca |
! EMITMBC(0x148) EMITMBC(0x149) EMITMBC(0x1e45)
|
|
|
3ef2ca |
! EMITMBC(0x1e49)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'o': case 0362: case 0363: case 0364: case 0365:
|
|
|
3ef2ca |
! case 0366: case 0370:
|
|
|
3ef2ca |
! CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1)
|
|
|
3ef2ca |
! CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf)
|
|
|
3ef2ca |
! EMIT2('o'); EMIT2(0362); EMIT2(0363); EMIT2(0364);
|
|
|
3ef2ca |
! EMIT2(0365); EMIT2(0366); EMIT2(0370);
|
|
|
3ef2ca |
! EMITMBC(0x14d) EMITMBC(0x14f) EMITMBC(0x151)
|
|
|
3ef2ca |
! EMITMBC(0x1a1) EMITMBC(0x1d2) EMITMBC(0x1eb)
|
|
|
3ef2ca |
! EMITMBC(0x1ed) EMITMBC(0x1ecf)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57)
|
|
|
3ef2ca |
! EMIT2('p'); EMITMBC(0x1e55) EMITMBC(0x1e57)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159)
|
|
|
3ef2ca |
! CASEMBC(0x1e59) CASEMBC(0x1e5f)
|
|
|
3ef2ca |
! EMIT2('r'); EMITMBC(0x155) EMITMBC(0x157) EMITMBC(0x159)
|
|
|
3ef2ca |
! EMITMBC(0x1e59) EMITMBC(0x1e5f)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f)
|
|
|
3ef2ca |
! CASEMBC(0x161) CASEMBC(0x1e61)
|
|
|
3ef2ca |
! EMIT2('s'); EMITMBC(0x15b) EMITMBC(0x15d) EMITMBC(0x15f)
|
|
|
3ef2ca |
! EMITMBC(0x161) EMITMBC(0x1e61)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167)
|
|
|
3ef2ca |
! CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97)
|
|
|
3ef2ca |
! EMIT2('t'); EMITMBC(0x163) EMITMBC(0x165) EMITMBC(0x167)
|
|
|
3ef2ca |
! EMITMBC(0x1e6b) EMITMBC(0x1e6f) EMITMBC(0x1e97)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'u': case 0371: case 0372: case 0373: case 0374:
|
|
|
3ef2ca |
! CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f)
|
|
|
3ef2ca |
! CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4)
|
|
|
3ef2ca |
! CASEMBC(0x1ee7)
|
|
|
3ef2ca |
! EMIT2('u'); EMIT2(0371); EMIT2(0372); EMIT2(0373);
|
|
|
3ef2ca |
! EMIT2(0374); EMITMBC(0x169) EMITMBC(0x16b)
|
|
|
3ef2ca |
! EMITMBC(0x16d) EMITMBC(0x16f) EMITMBC(0x171)
|
|
|
3ef2ca |
! EMITMBC(0x173) EMITMBC(0x1b0) EMITMBC(0x1d4)
|
|
|
3ef2ca |
! EMITMBC(0x1ee7)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'v': CASEMBC(0x1e7d)
|
|
|
3ef2ca |
! EMIT2('v'); EMITMBC(0x1e7d)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83)
|
|
|
3ef2ca |
! CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98)
|
|
|
3ef2ca |
! EMIT2('w'); EMITMBC(0x175) EMITMBC(0x1e81) EMITMBC(0x1e83)
|
|
|
3ef2ca |
! EMITMBC(0x1e85) EMITMBC(0x1e87) EMITMBC(0x1e98)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d)
|
|
|
3ef2ca |
! EMIT2('x'); EMITMBC(0x1e8b) EMITMBC(0x1e8d)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
case 'y': case 0375: case 0377:
|
|
|
3ef2ca |
! CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99)
|
|
|
3ef2ca |
! CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9)
|
|
|
3ef2ca |
! EMIT2('y'); EMIT2(0375); EMIT2(0377); EMITMBC(0x177)
|
|
|
3ef2ca |
! EMITMBC(0x1e8f) EMITMBC(0x1e99) EMITMBC(0x1ef3)
|
|
|
3ef2ca |
! EMITMBC(0x1ef7) EMITMBC(0x1ef9)
|
|
|
3ef2ca |
! return OK;
|
|
|
3ef2ca |
!
|
|
|
3ef2ca |
! case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e)
|
|
|
3ef2ca |
! CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95)
|
|
|
3ef2ca |
! EMIT2('z'); EMITMBC(0x17a) EMITMBC(0x17c) EMITMBC(0x17e)
|
|
|
3ef2ca |
! EMITMBC(0x1b6) EMITMBC(0x1e91) EMITMBC(0x1e95)
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! /* default: character itself */
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
! EMIT2(c);
|
|
|
3ef2ca |
return OK;
|
|
|
3ef2ca |
#undef EMIT2
|
|
|
3ef2ca |
+ #undef EMITMBC
|
|
|
3ef2ca |
}
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/*
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/test44.in 2013-05-26 14:16:31.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/test44.in 2013-09-19 16:49:14.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 1,9 ****
|
|
|
3ef2ca |
--- 1,11 ----
|
|
|
3ef2ca |
Tests for regexp with multi-byte encoding and various magic settings.
|
|
|
3ef2ca |
Test matchstr() with a count and multi-byte chars.
|
|
|
3ef2ca |
+ See test99 for exactly the same test with re=2.
|
|
|
3ef2ca |
|
|
|
3ef2ca |
STARTTEST
|
|
|
3ef2ca |
:so mbyte.vim
|
|
|
3ef2ca |
:set nocompatible encoding=utf-8 termencoding=latin1 viminfo+=nviminfo
|
|
|
3ef2ca |
+ :set re=1
|
|
|
3ef2ca |
/^1
|
|
|
3ef2ca |
/a*b\{2}c\+/e
|
|
|
3ef2ca |
x/\Md\*e\{2}f\+/e
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/test99.in 2013-09-19 16:59:30.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/test99.in 2013-09-19 16:50:00.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 0 ****
|
|
|
3ef2ca |
--- 1,68 ----
|
|
|
3ef2ca |
+ Tests for regexp with multi-byte encoding and various magic settings.
|
|
|
3ef2ca |
+ Test matchstr() with a count and multi-byte chars.
|
|
|
3ef2ca |
+ See test44 for exactly the same test with re=1.
|
|
|
3ef2ca |
+
|
|
|
3ef2ca |
+ STARTTEST
|
|
|
3ef2ca |
+ :so mbyte.vim
|
|
|
3ef2ca |
+ :set nocompatible encoding=utf-8 termencoding=latin1 viminfo+=nviminfo
|
|
|
3ef2ca |
+ :set re=2
|
|
|
3ef2ca |
+ /^1
|
|
|
3ef2ca |
+ /a*b\{2}c\+/e
|
|
|
3ef2ca |
+ x/\Md\*e\{2}f\+/e
|
|
|
3ef2ca |
+ x:set nomagic
|
|
|
3ef2ca |
+ /g\*h\{2}i\+/e
|
|
|
3ef2ca |
+ x/\mj*k\{2}l\+/e
|
|
|
3ef2ca |
+ x/\vm*n{2}o+/e
|
|
|
3ef2ca |
+ x/\V^aa$
|
|
|
3ef2ca |
+ x:set magic
|
|
|
3ef2ca |
+ /\v(a)(b)\2\1\1/e
|
|
|
3ef2ca |
+ x/\V[ab]\(\[xy]\)\1
|
|
|
3ef2ca |
+ x:" Now search for multi-byte without composing char
|
|
|
3ef2ca |
+ /ม
|
|
|
3ef2ca |
+ x:" Now search for multi-byte with composing char
|
|
|
3ef2ca |
+ /มà¹
|
|
|
3ef2ca |
+ x:" find word by change of word class
|
|
|
3ef2ca |
+ /ã¡\<ã«ã¨\>ã¯
|
|
|
3ef2ca |
+ x:" Test \%u, [\u] and friends
|
|
|
3ef2ca |
+ /\%u20ac
|
|
|
3ef2ca |
+ x/[\u4f7f\u5929]\+
|
|
|
3ef2ca |
+ x/\%U12345678
|
|
|
3ef2ca |
+ x/[\U1234abcd\u1234\uabcd]
|
|
|
3ef2ca |
+ x/\%d21879b
|
|
|
3ef2ca |
+ x/ [[=A=]]* [[=B=]]* [[=C=]]* [[=D=]]* [[=E=]]* [[=F=]]* [[=G=]]* [[=H=]]* [[=I=]]* [[=J=]]* [[=K=]]* [[=L=]]* [[=M=]]* [[=N=]]* [[=O=]]* [[=P=]]* [[=Q=]]* [[=R=]]* [[=S=]]* [[=T=]]* [[=U=]]* [[=V=]]* [[=W=]]* [[=X=]]* [[=Y=]]* [[=Z=]]*/e
|
|
|
3ef2ca |
+ x/ [[=a=]]* [[=b=]]* [[=c=]]* [[=d=]]* [[=e=]]* [[=f=]]* [[=g=]]* [[=h=]]* [[=i=]]* [[=j=]]* [[=k=]]* [[=l=]]* [[=m=]]* [[=n=]]* [[=o=]]* [[=p=]]* [[=q=]]* [[=r=]]* [[=s=]]* [[=t=]]* [[=u=]]* [[=v=]]* [[=w=]]* [[=x=]]* [[=y=]]* [[=z=]]*/e
|
|
|
3ef2ca |
+ x:" Test backwards search from a multi-byte char
|
|
|
3ef2ca |
+ /x
|
|
|
3ef2ca |
+ x?.
|
|
|
3ef2ca |
+ x:let @w=':%s#comb[i]nations#ÅÌá¹£ÌmÌ¥ÌαÌÌÌ#g'
|
|
|
3ef2ca |
+ :@w
|
|
|
3ef2ca |
+ :?^1?,$w! test.out
|
|
|
3ef2ca |
+ :e! test.out
|
|
|
3ef2ca |
+ G:put =matchstr(\"××××\", \".\", 0, 2) " ×
|
|
|
3ef2ca |
+ :put =matchstr(\"××××\", \"..\", 0, 2) " ××
|
|
|
3ef2ca |
+ :put =matchstr(\"××××\", \".\", 0, 0) " ×
|
|
|
3ef2ca |
+ :put =matchstr(\"××××\", \".\", 4, -1) " ×
|
|
|
3ef2ca |
+ :w!
|
|
|
3ef2ca |
+ :qa!
|
|
|
3ef2ca |
+ ENDTEST
|
|
|
3ef2ca |
+
|
|
|
3ef2ca |
+ 1 a aa abb abbccc
|
|
|
3ef2ca |
+ 2 d dd dee deefff
|
|
|
3ef2ca |
+ 3 g gg ghh ghhiii
|
|
|
3ef2ca |
+ 4 j jj jkk jkklll
|
|
|
3ef2ca |
+ 5 m mm mnn mnnooo
|
|
|
3ef2ca |
+ 6 x ^aa$ x
|
|
|
3ef2ca |
+ 7 (a)(b) abbaa
|
|
|
3ef2ca |
+ 8 axx [ab]xx
|
|
|
3ef2ca |
+ 9 หมà¹x à¸à¸¡x
|
|
|
3ef2ca |
+ a à¸à¸¡x หมà¹x
|
|
|
3ef2ca |
+ b ã¡ã«ã¨ã¯
|
|
|
3ef2ca |
+ c x ¬â¬x
|
|
|
3ef2ca |
+ d 天使x
|
|
|
3ef2ca |
+ e ü
¸y
|
|
|
3ef2ca |
+ f ü¯z
|
|
|
3ef2ca |
+ g aå·bb
|
|
|
3ef2ca |
+ h AÃÃÃÃÃÃ
ÄÄÄÇÇÇ áº¢ Bá¸á¸ CÃÄÄÄÄ DÄÄá¸á¸á¸ EÃÃÃÃÄÄÄÄÄẺẼ FḠGÄÄÄ Ä¢Ç¤Ç¦Ç´á¸ HĤĦḢḦḨ IÃÃÃÃĨĪĬĮİÇá» JÄ´ KĶǨḰḴ LĹĻĽĿÅḺ MḾṠNÃÅÅ
Åá¹á¹ OÃÃÃÃÃÃÅÅÅÆ ÇǪǬỠPá¹á¹ Q RÅÅÅá¹á¹ SÅÅÅÅ á¹ TŢŤŦṪṮ UÃÃÃÃŨŪŬŮŰŲƯÇỦ Vá¹¼ WÅ´áºáºáºáº Xáºáº YÃŶŸáºá»²á»¶á»¸ ZŹŻŽƵáºáº
|
|
|
3ef2ca |
+ i aà áâãäåÄÄÄ
ÇÇǡả bá¸á¸ cçÄÄÄÄ dÄÄá¸á¸á¸ eèéêëÄÄÄÄÄẻẽ fḠgÄÄġģǥǧǵḡ hĥħḣḧḩẠiìÃîïĩīÄįÇá» jĵǰ kķǩḱḵ lĺļľÅÅḻ mḿṠnñÅÅÅÅá¹
á¹ oòóôõöøÅÅÅÆ¡ÇÇ«Çá» pá¹á¹ q rÅÅÅá¹á¹ sÅÅÅšṡ tţťŧṫṯẠuùúûüũūÅůűųưÇủ vá¹½ wŵáºáºáº
áºáº xáºáº yýÿŷáºáºá»³á»·á»¹ zźżžƶáºáº
|
|
|
3ef2ca |
+ j 0123â¤x
|
|
|
3ef2ca |
+ k combinations
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/test99.ok 2013-09-19 16:59:30.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/test99.ok 2013-09-19 16:50:16.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 0 ****
|
|
|
3ef2ca |
--- 1,24 ----
|
|
|
3ef2ca |
+ 1 a aa abb abbcc
|
|
|
3ef2ca |
+ 2 d dd dee deeff
|
|
|
3ef2ca |
+ 3 g gg ghh ghhii
|
|
|
3ef2ca |
+ 4 j jj jkk jkkll
|
|
|
3ef2ca |
+ 5 m mm mnn mnnoo
|
|
|
3ef2ca |
+ 6 x aa$ x
|
|
|
3ef2ca |
+ 7 (a)(b) abba
|
|
|
3ef2ca |
+ 8 axx ab]xx
|
|
|
3ef2ca |
+ 9 หมà¹x à¸x
|
|
|
3ef2ca |
+ a à¸à¸¡x หx
|
|
|
3ef2ca |
+ b ã«ã¨ã¯
|
|
|
3ef2ca |
+ c x ¬x
|
|
|
3ef2ca |
+ d 使x
|
|
|
3ef2ca |
+ e y
|
|
|
3ef2ca |
+ f z
|
|
|
3ef2ca |
+ g abb
|
|
|
3ef2ca |
+ h AÃÃÃÃÃÃ
ÄÄÄÇÇÇ áº¢ Bá¸á¸ CÃÄÄÄÄ DÄÄá¸á¸á¸ EÃÃÃÃÄÄÄÄÄẺẼ FḠGÄÄÄ Ä¢Ç¤Ç¦Ç´á¸ HĤĦḢḦḨ IÃÃÃÃĨĪĬĮİÇá» JÄ´ KĶǨḰḴ LĹĻĽĿÅḺ MḾṠNÃÅÅ
Åá¹á¹ OÃÃÃÃÃÃÅÅÅÆ ÇǪǬỠPá¹á¹ Q RÅÅÅá¹á¹ SÅÅÅÅ á¹ TŢŤŦṪṮ UÃÃÃÃŨŪŬŮŰŲƯÇỦ Vá¹¼ WÅ´áºáºáºáº Xáºáº YÃŶŸáºá»²á»¶á»¸ ZŹŻŽƵáº
|
|
|
3ef2ca |
+ i aà áâãäåÄÄÄ
ÇÇǡả bá¸á¸ cçÄÄÄÄ dÄÄá¸á¸á¸ eèéêëÄÄÄÄÄẻẽ fḠgÄÄġģǥǧǵḡ hĥħḣḧḩẠiìÃîïĩīÄįÇá» jĵǰ kķǩḱḵ lĺļľÅÅḻ mḿṠnñÅÅÅÅá¹
á¹ oòóôõöøÅÅÅÆ¡ÇÇ«Çá» pá¹á¹ q rÅÅÅá¹á¹ sÅÅÅšṡ tţťŧṫṯẠuùúûüũūÅůűųưÇủ vá¹½ wŵáºáºáº
áºáº xáºáº yýÿŷáºáºá»³á»·á»¹ zźżžƶáº
|
|
|
3ef2ca |
+ j 012â¤
|
|
|
3ef2ca |
+ k ÅÌá¹£ÌmÌ¥ÌαÌÌÌ
|
|
|
3ef2ca |
+ ×
|
|
|
3ef2ca |
+ ××
|
|
|
3ef2ca |
+ ×
|
|
|
3ef2ca |
+ ×
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/Make_amiga.mak 2013-07-09 13:40:02.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/Make_amiga.mak 2013-09-19 16:51:48.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 33,39 ****
|
|
|
3ef2ca |
test76.out test77.out test78.out test79.out test80.out \
|
|
|
3ef2ca |
test81.out test82.out test83.out test84.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test97.out test98.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
.SUFFIXES: .in .out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--- 33,40 ----
|
|
|
3ef2ca |
test76.out test77.out test78.out test79.out test80.out \
|
|
|
3ef2ca |
test81.out test82.out test83.out test84.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test97.out test98.out \
|
|
|
3ef2ca |
! test99.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
.SUFFIXES: .in .out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 148,150 ****
|
|
|
3ef2ca |
--- 149,152 ----
|
|
|
3ef2ca |
test96.out: test96.in
|
|
|
3ef2ca |
test97.out: test97.in
|
|
|
3ef2ca |
test98.out: test98.in
|
|
|
3ef2ca |
+ test99.out: test99.in
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/Make_dos.mak 2013-07-09 13:40:30.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/Make_dos.mak 2013-09-19 16:51:56.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 32,38 ****
|
|
|
3ef2ca |
test79.out test80.out test81.out test82.out test83.out \
|
|
|
3ef2ca |
test84.out test85.out test86.out test87.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test98.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
SCRIPTS32 = test50.out test70.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--- 32,38 ----
|
|
|
3ef2ca |
test79.out test80.out test81.out test82.out test83.out \
|
|
|
3ef2ca |
test84.out test85.out test86.out test87.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test98.out test99.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
SCRIPTS32 = test50.out test70.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/Make_ming.mak 2013-07-09 13:40:38.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/Make_ming.mak 2013-09-19 16:52:01.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 52,58 ****
|
|
|
3ef2ca |
test79.out test80.out test81.out test82.out test83.out \
|
|
|
3ef2ca |
test84.out test85.out test86.out test87.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test98.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
SCRIPTS32 = test50.out test70.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--- 52,58 ----
|
|
|
3ef2ca |
test79.out test80.out test81.out test82.out test83.out \
|
|
|
3ef2ca |
test84.out test85.out test86.out test87.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test98.out test99.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
SCRIPTS32 = test50.out test70.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/Make_os2.mak 2013-07-09 13:40:43.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/Make_os2.mak 2013-09-19 16:52:07.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 34,40 ****
|
|
|
3ef2ca |
test76.out test77.out test78.out test79.out test80.out \
|
|
|
3ef2ca |
test81.out test82.out test83.out test84.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test98.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
.SUFFIXES: .in .out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--- 34,40 ----
|
|
|
3ef2ca |
test76.out test77.out test78.out test79.out test80.out \
|
|
|
3ef2ca |
test81.out test82.out test83.out test84.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test98.out test99.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
.SUFFIXES: .in .out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/Make_vms.mms 2013-07-09 13:40:47.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/Make_vms.mms 2013-09-19 16:52:13.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 4,10 ****
|
|
|
3ef2ca |
# Authors: Zoltan Arpadffy, <arpadffy@polarhome.com>
|
|
|
3ef2ca |
# Sandor Kopanyi, <sandor.kopanyi@mailbox.hu>
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
! # Last change: 2013 Jul 09
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
|
|
|
3ef2ca |
# Edit the lines in the Configuration section below to select.
|
|
|
3ef2ca |
--- 4,10 ----
|
|
|
3ef2ca |
# Authors: Zoltan Arpadffy, <arpadffy@polarhome.com>
|
|
|
3ef2ca |
# Sandor Kopanyi, <sandor.kopanyi@mailbox.hu>
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
! # Last change: 2013 Sep 19
|
|
|
3ef2ca |
#
|
|
|
3ef2ca |
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
|
|
|
3ef2ca |
# Edit the lines in the Configuration section below to select.
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 78,84 ****
|
|
|
3ef2ca |
test77.out test78.out test79.out test80.out test81.out \
|
|
|
3ef2ca |
test82.out test83.out test84.out test88.out test89.out \
|
|
|
3ef2ca |
test90.out test91.out test92.out test93.out test94.out \
|
|
|
3ef2ca |
! test95.out test96.out test97.out test98.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
# Known problems:
|
|
|
3ef2ca |
# Test 30: a problem around mac format - unknown reason
|
|
|
3ef2ca |
--- 78,84 ----
|
|
|
3ef2ca |
test77.out test78.out test79.out test80.out test81.out \
|
|
|
3ef2ca |
test82.out test83.out test84.out test88.out test89.out \
|
|
|
3ef2ca |
test90.out test91.out test92.out test93.out test94.out \
|
|
|
3ef2ca |
! test95.out test96.out test97.out test98.out test99.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
# Known problems:
|
|
|
3ef2ca |
# Test 30: a problem around mac format - unknown reason
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/testdir/Makefile 2013-08-10 14:20:20.000000000 +0200
|
|
|
3ef2ca |
--- src/testdir/Makefile 2013-09-19 16:52:22.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 29,35 ****
|
|
|
3ef2ca |
test79.out test80.out test81.out test82.out test83.out \
|
|
|
3ef2ca |
test84.out test85.out test86.out test87.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test97.out test98.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
SCRIPTS_GUI = test16.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--- 29,36 ----
|
|
|
3ef2ca |
test79.out test80.out test81.out test82.out test83.out \
|
|
|
3ef2ca |
test84.out test85.out test86.out test87.out test88.out \
|
|
|
3ef2ca |
test89.out test90.out test91.out test92.out test93.out \
|
|
|
3ef2ca |
! test94.out test95.out test96.out test97.out test98.out \
|
|
|
3ef2ca |
! test99.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
SCRIPTS_GUI = test16.out
|
|
|
3ef2ca |
|
|
|
3ef2ca |
*** ../vim-7.4.027/src/version.c 2013-09-08 20:00:45.000000000 +0200
|
|
|
3ef2ca |
--- src/version.c 2013-09-19 13:54:35.000000000 +0200
|
|
|
3ef2ca |
***************
|
|
|
3ef2ca |
*** 740,741 ****
|
|
|
3ef2ca |
--- 740,743 ----
|
|
|
3ef2ca |
{ /* Add new patch number below this line */
|
|
|
3ef2ca |
+ /**/
|
|
|
3ef2ca |
+ 28,
|
|
|
3ef2ca |
/**/
|
|
|
3ef2ca |
|
|
|
3ef2ca |
--
|
|
|
3ef2ca |
hundred-and-one symptoms of being an internet addict:
|
|
|
3ef2ca |
232. You start conversations with, "Have you gotten an ISDN line?"
|
|
|
3ef2ca |
|
|
|
3ef2ca |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
3ef2ca |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
3ef2ca |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
3ef2ca |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|