Bram Moolenaar
813f4d5080
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)
2013-06-12 22:41:37 +02:00
Bram Moolenaar
edd1f139fd
Added tag v7-3-1181 for changeset b7bb20390111
2013-06-12 22:08:58 +02:00
Bram Moolenaar
04be186d8e
updated for version 7.3.1181
...
Problem: Wrong error message for 1.0[0].
Solution: Check for funcref and float separately. (Yasuhiro Matsumoto)
2013-06-12 22:08:58 +02:00
Bram Moolenaar
e67f13ab38
Update runtime files.
2013-06-12 21:29:15 +02:00
Bram Moolenaar
316dff4d19
Added tag v7-3-1180 for changeset 04b8912a9c85
2013-06-12 21:25:23 +02:00
Bram Moolenaar
6d10ef9da0
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)
2013-06-12 21:25:23 +02:00
Bram Moolenaar
f78c11edc9
Added tag v7-3-1179 for changeset d84833983de7
2013-06-12 21:00:27 +02:00
Bram Moolenaar
69f7c04db3
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)
2013-06-12 21:00:26 +02:00
Bram Moolenaar
3c815abbcb
Added tag v7-3-1178 for changeset c4d4f0fc12b9
2013-06-12 20:35:58 +02:00
Bram Moolenaar
6f6563ac3d
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)
2013-06-12 20:35:58 +02:00
Bram Moolenaar
76cb82977d
Added tag v7-3-1177 for changeset e79a20f07daa
2013-06-12 19:52:15 +02:00
Bram Moolenaar
8ba3b1bda2
updated for version 7.3.1177
...
Problem: Wasting memory on padding.
Solution: Reorder struct fields. (Dominique Pelle)
2013-06-12 19:52:15 +02:00
Bram Moolenaar
6d3391081d
Added tag v7-3-1176 for changeset e48cabe98453
2013-06-12 18:13:38 +02:00
Bram Moolenaar
97db6ccf57
updated for version 7.3.1176
...
Problem: Compiler warnings on 64 bit system.
Solution: Add type casts. (Mike Williams)
2013-06-12 18:13:38 +02:00
Bram Moolenaar
8471eafe24
Added tag v7-3-1175 for changeset 84a8d1ba81c3
2013-06-12 17:12:24 +02:00
Bram Moolenaar
73055457da
updated for version 7.3.1175
...
Problem: Using isalpha() and isalnum() can be slow.
Solution: Use range checks. (Mike Williams)
2013-06-12 17:12:24 +02:00
Bram Moolenaar
00d2b3eacb
Added tag v7-3-1174 for changeset 52850ef928f8
2013-06-12 14:41:04 +02:00
Bram Moolenaar
5425310c4d
updated for version 7.3.1174
...
Problem: Python 2 and 3 use different ways to load modules.
Solution: Use the same method. (ZyX)
2013-06-12 14:41:04 +02:00
Bram Moolenaar
537cb825f4
Added tag v7-3-1173 for changeset b584d361e746
2013-06-12 14:26:26 +02:00
Bram Moolenaar
ee9242d512
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)
2013-06-12 14:26:26 +02:00
Bram Moolenaar
04a797fe7e
Added tag v7-3-1172 for changeset 96e154e825a7
2013-06-12 14:20:36 +02:00
Bram Moolenaar
870882c12f
updated for version 7.3.1172
...
Problem: Python 2: loading modules doesn't work well.
Solution: Fix the code. Add more tests. (ZyX)
2013-06-12 14:20:36 +02:00
Bram Moolenaar
b0a0c0a799
Added tag v7-3-1171 for changeset fc7f985df537
2013-06-12 14:10:27 +02:00
Bram Moolenaar
bcf97eb106
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)
2013-06-12 14:10:26 +02:00
Bram Moolenaar
b8b1c0a154
Added tag v7-3-1170 for changeset 14c2e63caec6
2013-06-12 13:37:43 +02:00
Bram Moolenaar
55f4236b3a
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:".
2013-06-12 13:37:43 +02:00
Bram Moolenaar
0bed166575
Added tag v7-3-1169 for changeset a83fb2bd8c8e
2013-06-11 22:44:09 +02:00
Bram Moolenaar
81eebeb91d
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.
2013-06-11 22:44:09 +02:00
Bram Moolenaar
bae267ba9c
Added tag v7-3-1168 for changeset ed47632fd149
2013-06-11 20:53:28 +02:00
Bram Moolenaar
2981d2ec54
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)
2013-06-11 20:53:28 +02:00
Bram Moolenaar
96e8643f20
Added tag v7-3-1167 for changeset 81dedcd64821
2013-06-11 19:53:45 +02:00
Bram Moolenaar
a9952bd14b
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)
2013-06-11 19:53:45 +02:00
Bram Moolenaar
ec2c54163c
Added tag v7-3-1166 for changeset d59ff2114733
2013-06-11 18:48:22 +02:00
Bram Moolenaar
d51f2e779b
updated for version 7.3.1166
...
Problem: Loading Python modules is not tested.
Solution: Enable commented-out tests, add missing files. (ZyX)
2013-06-11 18:48:21 +02:00
Bram Moolenaar
87d61c3b47
Added tag v7-3-1165 for changeset 05b8436873d4
2013-06-11 18:42:36 +02:00
Bram Moolenaar
92a1f47742
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.
2013-06-11 18:42:36 +02:00
Bram Moolenaar
c275fb7cca
Added tag v7-3-1164 for changeset 4db0bf9f1b44
2013-06-11 18:40:13 +02:00
Bram Moolenaar
f691646aea
updated for version 7.3.1164
...
Problem: Can't test what is actually displayed on screen.
Solution: Add the screenchar() and screenattr() functions.
2013-06-11 18:40:13 +02:00
Bram Moolenaar
bf38080721
Added tag v7-3-1163 for changeset 70b1178dec79
2013-06-10 21:27:29 +02:00
Bram Moolenaar
24f8bee068
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)
2013-06-10 21:27:29 +02:00
Bram Moolenaar
9fe5ccded8
Added tag v7-3-1162 for changeset b8eabb6a9687
2013-06-10 20:47:37 +02:00
Bram Moolenaar
66bb495307
updated for version 7.3.1162
...
Problem: Python: Memory leaks
Solution: Add more Py_DECREF(). (ZyX)
2013-06-10 20:47:36 +02:00
Bram Moolenaar
d76e01d6eb
Added tag v7-3-1161 for changeset ff3935926449
2013-06-10 20:39:03 +02:00
Bram Moolenaar
accbdafb78
updated for version 7.3.1161
...
Problem: Python: PyList_SetItem() is inefficient.
Solution: Use PyList_SET_ITEM() (ZyX)
2013-06-10 20:39:03 +02:00
Bram Moolenaar
1f4f330703
Added tag v7-3-1160 for changeset 60301d4d1682
2013-06-10 20:25:10 +02:00
Bram Moolenaar
ef48588023
updated for version 7.3.1160
...
Problem: Mixing long and pointer doesn't always work.
Solution: Avoid cast to pointer.
2013-06-10 20:25:10 +02:00
Bram Moolenaar
ca1af6e632
Added tag v7-3-1159 for changeset 208a6c04e6b8
2013-06-10 20:10:44 +02:00
Bram Moolenaar
76cd727fa6
updated for version 7.3.1159
...
Problem: The round() function is not always available. (Christ van
Willegen)
Solution: Use the solution from f_round().
2013-06-10 20:10:44 +02:00
Bram Moolenaar
2ae1bea8f8
Added tag v7-3-1158 for changeset 46077370bc60
2013-06-10 18:36:24 +02:00
Bram Moolenaar
16c8a28e9d
updated for version 7.3.1158
...
Problem: Crash when running test 86. (Jun Takimoto)
Solution: Define PY_SSIZE_T_CLEAN early. (Elimar Riesebieter)
2013-06-10 18:36:24 +02:00