Bram Moolenaar
4c46b5e001
updated for version 7.3.1189
...
Problem: Highlighting is still wrong sometimes. (Dominique Pelle)
Solution: Also restore reginput properly.
v7.3.1189
2013-06-13 22:59:30 +02:00
Bram Moolenaar
9d438d3b38
updated for version 7.3.1188
...
Problem: Newline characters messing up error message.
Solution: Remove the newlines. (Kazunobu Kuriyama)
v7.3.1188
2013-06-13 21:57:20 +02:00
Bram Moolenaar
0c6633a7ea
updated for version 7.3.1187
...
Problem: "s:" is recognized but "<SID>" is not. (ZyX)
Solution: Translate "<SID>" like "s:".
v7.3.1187
2013-06-13 21:24:06 +02:00
Bram Moolenaar
5f87b23229
updated for version 7.3.1186
...
Problem: Python 3: test 87 may crash.
Solution: Use _PyArg_Parse_SizeT instead of PyArg_Parse. (Jun Takimoto)
v7.3.1186
2013-06-13 20:57:50 +02:00
Bram Moolenaar
b62bcd1e05
updated for version 7.3.1185
...
Problem: New regexp engine: no match with ^ after \n. (SungHyun Nam)
Solution: Fix it, add a test.
v7.3.1185
2013-06-13 20:19:40 +02:00
Bram Moolenaar
484d241a4a
updated for version 7.3.1184
...
Problem: Highlighting is sometimes wrong. (Axel Bender)
Solution: Fetch regline again when returning from recursive regmatch.
v7.3.1184
2013-06-13 19:47:07 +02:00
Bram Moolenaar
98bfc2d5ee
Add missing files from 7.3.1183.
2013-06-13 19:44:55 +02:00
Bram Moolenaar
82850dd9cb
updated for version 7.3.1183
...
Problem: Python tests 86 and 87 fail.
Solution: Add "empty" files. (ZyX)
v7.3.1183
2013-06-13 19:27:18 +02:00
Bram Moolenaar
12b559e7c3
updated for version 7.3.1182
...
Problem: 'backupcopy' default on MS-Windows does not work for hard and soft
links.
Solution: Check for links. (David Pope, Ken Takata)
v7.3.1182
2013-06-12 22:41:37 +02:00
Bram Moolenaar
2a876e40ce
updated for version 7.3.1181
...
Problem: Wrong error message for 1.0[0].
Solution: Check for funcref and float separately. (Yasuhiro Matsumoto)
v7.3.1181
2013-06-12 22:08:58 +02:00
Bram Moolenaar
ec7944aaf2
Update runtime files.
2013-06-12 21:29:15 +02:00
Bram Moolenaar
cab465a6d7
updated for version 7.3.1180
...
Problem: When current directory changes, path from cscope may no longer be
valid. (AS Budden)
Solution: Always store the absolute path. (Christian Brabandt)
v7.3.1180
2013-06-12 21:25:23 +02:00
Bram Moolenaar
0825c00f14
updated for version 7.3.1179
...
Problem: When a global mapping starts with the same characters as a
buffer-local mapping Vim waits for a character to be typed to find
out whether the global mapping is to be used. (Andy Wokula)
Solution: Use the local mapping without waiting. (Michael Henry)
v7.3.1179
2013-06-12 21:00:26 +02:00
Bram Moolenaar
22971aaa45
updated for version 7.3.1178
...
Problem: Can't put all Vim config files together in one directory.
Solution: Load ~/.vim/vimrc if ~/.vimrc does not exist. (Lech Lorens)
v7.3.1178
2013-06-12 20:35:58 +02:00
Bram Moolenaar
6395af8018
updated for version 7.3.1177
...
Problem: Wasting memory on padding.
Solution: Reorder struct fields. (Dominique Pelle)
v7.3.1177
2013-06-12 19:52:15 +02:00
Bram Moolenaar
edb07a2d88
updated for version 7.3.1176
...
Problem: Compiler warnings on 64 bit system.
Solution: Add type casts. (Mike Williams)
v7.3.1176
2013-06-12 18:13:38 +02:00
Bram Moolenaar
2d473ab932
updated for version 7.3.1175
...
Problem: Using isalpha() and isalnum() can be slow.
Solution: Use range checks. (Mike Williams)
v7.3.1175
2013-06-12 17:12:24 +02:00
Bram Moolenaar
81c40c507c
updated for version 7.3.1174
...
Problem: Python 2 and 3 use different ways to load modules.
Solution: Use the same method. (ZyX)
v7.3.1174
2013-06-12 14:41:04 +02:00
Bram Moolenaar
27610ed76c
updated for version 7.3.1173
...
Problem: Python 2 tests don't have the same output everywhere.
Solution: Make the Python 2 tests more portable. (ZyX)
v7.3.1173
2013-06-12 14:26:26 +02:00
Bram Moolenaar
9f3685a527
updated for version 7.3.1172
...
Problem: Python 2: loading modules doesn't work well.
Solution: Fix the code. Add more tests. (ZyX)
v7.3.1172
2013-06-12 14:20:36 +02:00
Bram Moolenaar
0ea4a6b94b
updated for version 7.3.1171
...
Problem: Check for digits and ascii letters can be faster.
Solution: Use a trick with one comparison. (Dominique Pelle)
v7.3.1171
2013-06-12 14:10:26 +02:00
Bram Moolenaar
60bf1f58d0
updated for version 7.3.1170
...
Problem: Patch 7.3.1058 breaks backwards compatibility, not possible to use
a function reference as a string. (lilydjwg)
Solution: Instead of translating the function name only translate "s:".
v7.3.1170
2013-06-12 13:37:43 +02:00
Bram Moolenaar
a2947e2bea
updated for version 7.3.1169
...
Problem: New regexp engine: some work is done while executing a pattern,
even though the result is predictable.
Solution: Do the work while compiling the pattern.
v7.3.1169
2013-06-11 22:44:09 +02:00
Bram Moolenaar
780c3e9b04
updated for version 7.3.1168
...
Problem: Python "sane" configure checks give a warning message.
Solution: Use single quotes intead of escaped double quotes. (Ben Fritz)
v7.3.1168
2013-06-11 20:53:28 +02:00
Bram Moolenaar
3c7ad013fb
updated for version 7.3.1167
...
Problem: Python configure check doesn't reject Python 2 when requesting
Python 3. Some systems need -pthreads instead of -pthread.
Solution: Adjust configure accordingly. (Andrei Olsen)
v7.3.1167
2013-06-11 19:53:45 +02:00
Bram Moolenaar
a9f2220176
updated for version 7.3.1166
...
Problem: Loading Python modules is not tested.
Solution: Enable commented-out tests, add missing files. (ZyX)
v7.3.1166
2013-06-11 18:48:21 +02:00
Bram Moolenaar
16619a235b
updated for version 7.3.1165
...
Problem: HP-UX compiler can't handle zero size array. (Charles Cooper)
Solution: Make the array one item big.
v7.3.1165
2013-06-11 18:42:36 +02:00
Bram Moolenaar
9a773488a7
updated for version 7.3.1164
...
Problem: Can't test what is actually displayed on screen.
Solution: Add the screenchar() and screenattr() functions.
v7.3.1164
2013-06-11 18:40:13 +02:00
Bram Moolenaar
c09a6d6c0c
updated for version 7.3.1163
...
Problem: Not easy to load Python modules.
Solution: Search "python2", "python3" and "pythonx" directories in
'runtimepath' for Python modules. (ZyX)
v7.3.1163
2013-06-10 21:27:29 +02:00
Bram Moolenaar
f9c9b32bd1
updated for version 7.3.1162
...
Problem: Python: Memory leaks
Solution: Add more Py_DECREF(). (ZyX)
v7.3.1162
2013-06-10 20:47:36 +02:00
Bram Moolenaar
c1ba10c7f6
updated for version 7.3.1161
...
Problem: Python: PyList_SetItem() is inefficient.
Solution: Use PyList_SET_ITEM() (ZyX)
v7.3.1161
2013-06-10 20:39:03 +02:00
Bram Moolenaar
570064cf21
updated for version 7.3.1160
...
Problem: Mixing long and pointer doesn't always work.
Solution: Avoid cast to pointer.
v7.3.1160
2013-06-10 20:25:10 +02:00
Bram Moolenaar
a2e14fc764
updated for version 7.3.1159
...
Problem: The round() function is not always available. (Christ van
Willegen)
Solution: Use the solution from f_round().
v7.3.1159
2013-06-10 20:10:44 +02:00
Bram Moolenaar
0bdda37fb4
updated for version 7.3.1158
...
Problem: Crash when running test 86. (Jun Takimoto)
Solution: Define PY_SSIZE_T_CLEAN early. (Elimar Riesebieter)
v7.3.1158
2013-06-10 18:36:24 +02:00
Bram Moolenaar
bcf4d178ab
updated for version 7.3.1157
...
Problem: New regexp engine fails on "\(\<command\)\@<=.*"
Solution: Fix rule for postponing match. Further tune estimating whether
postponing works better. Add test.
v7.3.1157
2013-06-10 16:35:18 +02:00
Bram Moolenaar
4380d1ea23
updated for version 7.3.1156
...
Problem: Compiler warnings. (dv1445)
Solution: Initialize variables, even when the value isn't really used.
v7.3.1156
2013-06-09 20:51:00 +02:00
Bram Moolenaar
11354759e2
updated for version 7.3.1155
...
Problem: MS-DOS: "make test" uses external rmdir command.
Solution: Rename "rmdir" to "rd". (Taro Muraoka)
v7.3.1155
2013-06-09 17:52:46 +02:00
Bram Moolenaar
927d4a1fb5
updated for version 7.3.1154
...
Problem: New regexp_nfa engine: Uneccessary code.
Solution: Remove uneccessary code.
v7.3.1154
2013-06-09 17:25:34 +02:00
Bram Moolenaar
2a4e98ac1e
updated for version 7.3.1153
...
Problem: New regexp engine: Some look-behind matches are very expensive.
Solution: Pospone invisible matches further, until a match is almost found.
v7.3.1153
2013-06-09 16:24:45 +02:00
Bram Moolenaar
a940aa6fc4
updated for version 7.3.1152
...
Problem: In tiny build ireg_icombine is undefined. (Tony Mechelynck)
Solution: Add #ifdef.
v7.3.1152
2013-06-08 23:30:04 +02:00
Bram Moolenaar
1e02e6620b
updated for version 7.3.1151
...
Problem: New regexp engine: Slow when a look-behind match is followed by a
zero-width match.
Solution: Postpone the look-behind match more often.
v7.3.1151
2013-06-08 23:26:27 +02:00
Bram Moolenaar
e7766eeaa5
updated for version 7.3.1150
...
Problem: New regexpengine: Slow when a look-behind match does not have a
width specified.
Solution: Try to compute the maximum width.
v7.3.1150
2013-06-08 22:30:03 +02:00
Bram Moolenaar
473de61b04
updated for version 7.3.1149
...
Problem: New regexp engine: Matching plain text could be faster.
Solution: Detect a plain text match and handle it specifically. Add
vim_regfree().
v7.3.1149
2013-06-08 18:19:48 +02:00
Bram Moolenaar
cd9c46265e
updated for version 7.3.1148
...
Problem: No command line completion for ":syntime".
Solution: Implement the completion. (Dominique Pelle)
v7.3.1148
2013-06-08 15:24:48 +02:00
Bram Moolenaar
87f764a891
updated for version 7.3.1147
...
Problem: New regexp engine: regstart is only used to find the first match.
Solution: Use regstart whenever adding the start state.
v7.3.1147
2013-06-08 14:38:27 +02:00
Bram Moolenaar
b1b284fd5d
updated for version 7.3.1146
...
Problem: New regexp engine: look-behind match not checked when followed by
zero-width match.
Solution: Do the look-behind match before adding the zero-width state.
v7.3.1146
2013-06-08 13:33:37 +02:00
Bram Moolenaar
f96d109827
updated for version 7.3.1145
...
Problem: New regexp engine: addstate() is called very often.
Solution: Optimize adding the start state.
v7.3.1145
2013-06-07 22:39:40 +02:00
Bram Moolenaar
2358403363
updated for version 7.3.1144
...
Problem: "RO" is not translated everywhere.
Solution: Put inside _(). (Sergey Alyoshin)
v7.3.1144
2013-06-07 20:17:11 +02:00
Bram Moolenaar
3798519b9e
updated for version 7.3.1143
...
Problem: When mapping NUL it is displayed as an X.
Solution: Check for KS_ZERO instead of K_ZERO. (Yasuhiro Matsumoto)
v7.3.1143
2013-06-07 19:53:10 +02:00
Bram Moolenaar
45fc539fe0
updated for version 7.3.1142
...
Problem: Memory leak in ":syntime report".
Solution: Clear the grow array. (Dominique Pelle)
v7.3.1142
2013-06-07 19:48:39 +02:00