- Jun 01, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: A leading star is not seen as a normal char when \{} follows. Solution: Save and restore the parse state properly.
-
Bram Moolenaar authored
Problem: Old regexp engine accepts illegal range, new one doesn't. Solution: Also accept the illegal range with the new engine.
-
Bram Moolenaar authored
Problem: New regexp engine: Non-greedy multi doesn't work. Solution: Implement \{-}.
-
- May 31, 2013
-
-
Bram Moolenaar authored
Problem: New regexp engine: only accepts up to \{,10}. Solution: Remove upper limit. Remove dead code with NFA_PLUS.
-
Bram Moolenaar authored
Problem: New regexp engine: Does not support \%^ and \%$. Solution: Support matching start and end of file.
-
Bram Moolenaar authored
Problem: New regexp engine: Problem with \@= matching. Solution: Save and restore nfa_match.
-
Bram Moolenaar authored
Problem: Compiler warnings on 64-bit Windows. Solution: Change variable types. (Mike Williams)
-
Bram Moolenaar authored
Problem: Test 86 fails. Solution: Comment out the parts that don't work. Make it pass on 32 bit systems.
-
Bram Moolenaar authored
Problem: Test 87 fails. Solution: Fix the test for Python 3.3. (ZyX) Make it pass on 32 bit systems.
-
- May 30, 2013
-
-
Bram Moolenaar authored
Problem: New regexp engine: \@! doesn't work. Solution: Implement the negated version of \@=.
-
Bram Moolenaar authored
Problem: Python: Allocating dict the wrong way, causing a crash. Solution: Use py_dict_alloc(). Fix some exception problems. (ZyX)
-
Bram Moolenaar authored
Problem: New regexp engine: \@= and \& don't work. Solution: Make these items work. Add column info to logging.
-
Bram Moolenaar authored
Problem: Compiler warning for storing a long_u in an int. Solution: Declare the number as an int. (Mike Williams)
-
Bram Moolenaar authored
Problem: Compiler warning for printf format. (Manuel Ortega) Solution: Add type casts.
-
Bram Moolenaar authored
Problem: New regexp engine may run out of states. Solution: Allocate states dynamically. Also make the test report errors.
-
Bram Moolenaar authored
Problem: Compiler warning for unitialized variable. Solution: Initialize it.
-
Bram Moolenaar authored
Problem: New regexp engine: backreferences don't work correctly. Solution: Add every possible start/end position on the state stack.
-
Bram Moolenaar authored
Problem: Vim crashes in Python tests. Compiler warning for unused function. Solution: Disable the tests for now. Move the function.
-
Bram Moolenaar authored
Problem: Python: memory leaks. Solution: Python patch 28: Purge out DICTKEY_CHECK_EMPTY macros. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Script is auto-loaded on function creation. Solution: Python patch 27. (ZyX)
-
Bram Moolenaar authored
Problem: Python: documentation lags behind. Solution: Python patch 26. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Insufficient exception and error testing. Solution: Python patch 25. (ZyX)
-
Bram Moolenaar authored
Problem: Python: key mapping is not standard. Solution: Puthon patch 24: use PyMapping_Keys. (ZyX)
-
Bram Moolenaar authored
Problem: Python: insufficient error checking. Solution: Python patch 23. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Function is not standard. Solution: Python patch 22: make Function subclassable. (ZyX)
-
Bram Moolenaar authored
Problem: Python: List is not standard. Solution: Python patch 21: Add standard methods and fields. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Dictionary is not standard. Solution: Python patch 20: Add standard methods and fields. (ZyX)
-
Bram Moolenaar authored
Problem: Python: can't repr() a function. Solution: Python patch 19: add FunctionRepr(). (ZyX)
-
Bram Moolenaar authored
Problem: Python: Using fixed size buffers. Solution: Python patch 18: Use python's own formatter. (ZyX)
-
Bram Moolenaar authored
Problem: Call of funcref does not succeed in other script. Solution: Python patch 17: add get_expanded_name(). (ZyX)
-
Bram Moolenaar authored
Problem: Python: not enough compatibilty. Solution: Python patch 16: Make OutputWritelines support any sequence object (ZyX) Note: tests fail
-
Bram Moolenaar authored
Problem: Python: possible memory leaks. Solution: Python patch 15. (ZyX) Fix will follow later.
-
Bram Moolenaar authored
Problem: Negated collection does not match newline. Solution: Handle newline differently. (Hiroshi Shirosaki)
-
Bram Moolenaar authored
Problem: Can't build without the +autocmd feature. (Elimar Riesebieter) Solution: Fix use of buf and curbuf.
-
- May 29, 2013
-
-
Bram Moolenaar authored
Problem: Python: no flag for types with tp_traverse+tp_clear. Solution: Python patch 14: Add Py_TPFLAGS_HAVE_GC. (ZyX)
-
Bram Moolenaar authored
Problem: Python: possible SEGV and negative refcount. Solution: Python patch 13: Fix IterIter function. (ZyX)
-
Bram Moolenaar authored
Problem: Python: possible memory leaks. Solution: Python patch 12: fix the leaks (ZyX)
-
Bram Moolenaar authored
Problem: Python: Typo in pyiter_to_tv. Solution: Python patch 11. (ZyX)
-
Bram Moolenaar authored
Problem: Python: no consistent naming Solution: Python patch 10: Rename DICTKEY_GET_NOTEMPTY to DICTKEY_GET. (ZyX)
-