Bram Moolenaar
adc48016b0
updated for version 7.3.1096
...
Problem: Python: popitem() was not defined in a standard way.
Solution: Remove the argument from popitem(). (ZyX)
2013-06-02 17:41:54 +02:00
Bram Moolenaar
f6969f616a
Added tag v7-3-1095 for changeset ed4e689bbea1
2013-06-02 16:40:55 +02:00
Bram Moolenaar
62a0720120
updated for version 7.3.1095
...
Problem: Compiler warnings for shadowed variables. (Christian Brabandt)
Solution: Rename new_state() to alloc_state(). Remove unnecessary
declaration.
2013-06-02 16:40:55 +02:00
Bram Moolenaar
687e7adf93
Added tag v7-3-1094 for changeset efc4fb311d5d
2013-06-02 16:34:21 +02:00
Bram Moolenaar
f2f5dbc487
updated for version 7.3.1094
...
Problem: New regexp engine: Attempts to match "^" at every character.
Solution: Only try "^" at the start of a line.
2013-06-02 16:34:21 +02:00
Bram Moolenaar
490e6e6d66
Added tag v7-3-1093 for changeset 08fbb1ce1bc5
2013-06-02 16:07:11 +02:00
Bram Moolenaar
fd01cdb87c
updated for version 7.3.1093
...
Problem: New regexp engine: When a sub expression is empty \1 skips a
character.
Solution: Make \1 try the current position when the match is emtpy.
2013-06-02 16:07:10 +02:00
Bram Moolenaar
a6c56049b4
Added tag v7-3-1092 for changeset 9d97a0c045ef
2013-06-02 15:55:55 +02:00
Bram Moolenaar
1a573ad366
updated for version 7.3.1092
...
Problem: Can't build with regexp debugging. NFA debug output shows wrong
pattern.
Solution: Fix debugging code for recent changes. Add the pattern to the
program.
2013-06-02 15:55:55 +02:00
Bram Moolenaar
398201470d
Added tag v7-3-1091 for changeset 371cc0c44097
2013-06-02 15:01:57 +02:00
Bram Moolenaar
8766e508ea
updated for version 7.3.1091
...
Problem: New regexp engine: no error when using \z1 or \z( where it does
not work.
Solution: Give an error message.
2013-06-02 15:01:57 +02:00
Bram Moolenaar
50b58c389a
Added tag v7-3-1090 for changeset 8db697ae406a
2013-06-01 23:02:55 +02:00
Bram Moolenaar
0d3d7a2d00
updated for version 7.3.1090
...
Problem: New regexp engine does not support \z1 .. \z9 and \z(.
Solution: Implement the syntax submatches.
2013-06-01 23:02:54 +02:00
Bram Moolenaar
e21e1f44ff
Added tag v7-3-1089 for changeset 79522bb17125
2013-06-01 20:32:13 +02:00
Bram Moolenaar
065695c91a
updated for version 7.3.1089
...
Problem: Tests 86 and 87 fail on MS-Windows. (Ken Takata)
Solution: Fix platform-specific stuff. (ZyX)
2013-06-01 20:32:12 +02:00
Bram Moolenaar
9ac4a23511
Added tag v7-3-1088 for changeset 2f51ee8825db
2013-06-01 19:54:43 +02:00
Bram Moolenaar
65d28ef25e
updated for version 7.3.1088
...
Problem: New regexp engine: \@<= and \@<! are not implemented.
Solution: Implement look-behind matching. Fix off-by-one error in old
regexp engine.
2013-06-01 19:54:43 +02:00
Bram Moolenaar
e0086714bc
Updated runtime files and translations.
2013-06-01 14:50:56 +02:00
Bram Moolenaar
b69a632590
Added tag v7-3-1087 for changeset 4d92b873acef
2013-06-01 14:42:56 +02:00
Bram Moolenaar
7f4952c7a9
updated for version 7.3.1087
...
Problem: A leading star is not seen as a normal char when \{} follows.
Solution: Save and restore the parse state properly.
2013-06-01 14:42:56 +02:00
Bram Moolenaar
5e7a30a6ad
Added tag v7-3-1086 for changeset c1622ff9ed8d
2013-06-01 13:24:24 +02:00
Bram Moolenaar
d9c98ff69b
updated for version 7.3.1086
...
Problem: Old regexp engine accepts illegal range, new one doesn't.
Solution: Also accept the illegal range with the new engine.
2013-06-01 13:24:24 +02:00
Bram Moolenaar
f709cfbf3d
Added tag v7-3-1085 for changeset 811a4c9b51d8
2013-06-01 12:40:20 +02:00
Bram Moolenaar
6ba87d0a18
updated for version 7.3.1085
...
Problem: New regexp engine: Non-greedy multi doesn't work.
Solution: Implement \{-}.
2013-06-01 12:40:20 +02:00
Bram Moolenaar
a17039e496
Added tag v7-3-1084 for changeset 05d57d7c2d55
2013-05-31 23:18:00 +02:00
Bram Moolenaar
0f969b31b4
updated for version 7.3.1084
...
Problem: New regexp engine: only accepts up to \{,10}.
Solution: Remove upper limit. Remove dead code with NFA_PLUS.
2013-05-31 23:18:00 +02:00
Bram Moolenaar
4317654e97
Added tag v7-3-1083 for changeset b3c59716e700
2013-05-31 22:14:52 +02:00
Bram Moolenaar
4aa7379e47
updated for version 7.3.1083
...
Problem: New regexp engine: Does not support \%^ and \%$.
Solution: Support matching start and end of file.
2013-05-31 22:14:52 +02:00
Bram Moolenaar
36f8cb77ff
Added tag v7-3-1082 for changeset 2d15582e132f
2013-05-31 21:45:09 +02:00
Bram Moolenaar
c3fcbaca15
updated for version 7.3.1082
...
Problem: New regexp engine: Problem with \@= matching.
Solution: Save and restore nfa_match.
2013-05-31 21:45:09 +02:00
Bram Moolenaar
038f382f4c
Added tag v7-3-1081 for changeset 9e7ef781d494
2013-05-31 20:49:31 +02:00
Bram Moolenaar
9ac0d7c179
updated for version 7.3.1081
...
Problem: Compiler warnings on 64-bit Windows.
Solution: Change variable types. (Mike Williams)
2013-05-31 20:49:31 +02:00
Bram Moolenaar
9634e68376
Added tag v7-3-1080 for changeset 7a35419393c3
2013-05-31 19:01:17 +02:00
Bram Moolenaar
085dc70e23
updated for version 7.3.1080
...
Problem: Test 86 fails.
Solution: Comment out the parts that don't work. Make it pass on 32 bit
systems.
2013-05-31 19:01:16 +02:00
Bram Moolenaar
93388bd72f
Added tag v7-3-1079 for changeset bce2051173f0
2013-05-31 18:46:11 +02:00
Bram Moolenaar
47c02ded69
updated for version 7.3.1079
...
Problem: Test 87 fails.
Solution: Fix the test for Python 3.3. (ZyX) Make it pass on 32 bit systems.
2013-05-31 18:46:11 +02:00
Bram Moolenaar
d4993e76e2
Added tag v7-3-1078 for changeset 0dce3d812e7a
2013-05-30 22:44:02 +02:00
Bram Moolenaar
f7a3190af2
updated for version 7.3.1078
...
Problem: New regexp engine: \@! doesn't work.
Solution: Implement the negated version of \@=.
2013-05-30 22:44:02 +02:00
Bram Moolenaar
3f040cc8c8
Added tag v7-3-1077 for changeset 80b0081824fa
2013-05-30 22:06:33 +02:00
Bram Moolenaar
4024f55c56
updated for version 7.3.1077
...
Problem: Python: Allocating dict the wrong way, causing a crash.
Solution: Use py_dict_alloc(). Fix some exception problems. (ZyX)
2013-05-30 22:06:33 +02:00
Bram Moolenaar
1655d4a3cb
Added tag v7-3-1076 for changeset 93b7ed814bec
2013-05-30 21:42:13 +02:00
Bram Moolenaar
612c5addb9
updated for version 7.3.1076
...
Problem: New regexp engine: \@= and \& don't work.
Solution: Make these items work. Add column info to logging.
2013-05-30 21:42:13 +02:00
Bram Moolenaar
04a69d883d
Added tag v7-3-1075 for changeset 779ca415f8e1
2013-05-30 19:18:31 +02:00
Bram Moolenaar
c1e1e21e13
updated for version 7.3.1075
...
Problem: Compiler warning for storing a long_u in an int.
Solution: Declare the number as an int. (Mike Williams)
2013-05-30 19:18:31 +02:00
Bram Moolenaar
4a750e219e
Added tag v7-3-1074 for changeset b943fd24c351
2013-05-30 19:01:24 +02:00
Bram Moolenaar
b7fea86789
updated for version 7.3.1074
...
Problem: Compiler warning for printf format. (Manuel Ortega)
Solution: Add type casts.
2013-05-30 19:01:24 +02:00
Bram Moolenaar
ebccfebcae
Added tag v7-3-1073 for changeset f10f63aaec5c
2013-05-30 18:45:23 +02:00
Bram Moolenaar
498cc6dfac
updated for version 7.3.1073
...
Problem: New regexp engine may run out of states.
Solution: Allocate states dynamically. Also make the test report errors.
2013-05-30 18:45:23 +02:00
Bram Moolenaar
a4c7f4990f
Added tag v7-3-1072 for changeset 9f502d8d5165
2013-05-30 17:49:24 +02:00
Bram Moolenaar
897394c80e
updated for version 7.3.1072
...
Problem: Compiler warning for unitialized variable.
Solution: Initialize it.
2013-05-30 17:49:24 +02:00