1
0
forked from aniani/vim

Commit Graph

  • dee2e315d7 updated for version 7.3.1236 Problem: Python: WindowSetattr() missing support for NUMBER_UNSIGNED. Solution: Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX) v7.3.1236 Bram Moolenaar 2013-06-23 16:35:47 +02:00
  • ede3e6383d updated for version 7.3.1235 Problem: In insert mode CTRL-] is not inserted, on the command-line it is. Solution: Don't insert CTRL-] on the command line. (Yukihiro Nakadaira) v7.3.1235 Bram Moolenaar 2013-06-23 16:16:19 +02:00
  • 6f1404f8a8 updated for version 7.3.1234 Problem: Python: Strings are not marked for translation. Solution: Add N_() where appropriate. (ZyX) v7.3.1234 Bram Moolenaar 2013-06-23 16:04:08 +02:00
  • 841fbd2907 updated for version 7.3.1233 Problem: Various Python problems. Solution: Fix VimTryEnd. Crash with debug build and PYTHONDUMPREFS=1. Memory leaks in StringToLine(), BufferMark() and convert_dl. (ZyX) v7.3.1233 Bram Moolenaar 2013-06-23 14:37:07 +02:00
  • c4b99e0be7 updated for version 7.3.1232 Problem: Python: inconsistencies in variable names. Solution: Rename variables. (ZyX) v7.3.1232 Bram Moolenaar 2013-06-23 14:30:47 +02:00
  • 141be8a585 updated for version 7.3.1231 Problem: Python: use of numbers not consistent. Solution: Add support for Number protocol. (ZyX) v7.3.1231 Bram Moolenaar 2013-06-23 14:16:57 +02:00
  • c476e52fca updated for version 7.3.1230 Problem: Python: Exception messages are not clear. Solution: Make exception messages more verbose. (ZyX) v7.3.1230 Bram Moolenaar 2013-06-23 13:46:40 +02:00
  • 0bd80ccd85 updated for version 7.3.1229 Problem: Python: not so easy to delete/restore translating. Solution: Make macros do translation of exception messages. (ZyX) Note: this breaks translations! v7.3.1229 Bram Moolenaar 2013-06-23 13:28:17 +02:00
  • 808c2bc8bf updated for version 7.3.1228 Problem: Python: various inconsistencies and problems. Solution: StringToLine now supports both bytes() and unicode() objects. Make function names consistant. Fix memory leak fixed in StringToLine. (ZyX) v7.3.1228 Bram Moolenaar 2013-06-23 13:11:18 +02:00
  • 389a1793f4 updated for version 7.3.1227 Problem: Inconsistent string conversion. Solution: Use 'encoding' instead of utf-8. Use METH_O in place of METH_VARARGS where appropriate. (ZyX) v7.3.1227 Bram Moolenaar 2013-06-23 13:00:44 +02:00
  • 6c85e7f3be updated for version 7.3.1226 Problem: Python: duplicate code. Solution: Share code between OutputWrite() and OutputWritelines(). (ZyX) v7.3.1226 Bram Moolenaar 2013-06-23 12:51:32 +02:00
  • 3dbcd0c7ad updated for version 7.3.1225 Problem: Compiler warnings when building with Motif. Solution: Change set_label() argument. (Kazunobu Kuriyama) v7.3.1225 Bram Moolenaar 2013-06-22 13:00:16 +02:00
  • fe70acb376 updated for version 7.3.1224 Problem: Clang gives warnings on xxd. Solution: Change how to use part of a string. (Dominique Pelle) Also avoid warning for return not reached. v7.3.1224 Bram Moolenaar 2013-06-21 18:31:23 +02:00
  • d73895ec00 updated for version 7.3.1223 Problem: Tests fail on MS-Windows. Solution: Avoid depending on OS version. Use DOS commands instead of Unix commands. (Taro Muraoka, Ken Takata) v7.3.1223 Bram Moolenaar 2013-06-19 21:17:31 +02:00
  • 22f93c700f updated for version 7.3.1222 Problem: Cannot execute some tests from the src directoly. Solution: Add missing targets. v7.3.1222 Bram Moolenaar 2013-06-19 20:11:50 +02:00
  • a6cc03101e updated for version 7.3.1221 Problem: When build flags change "make distclean" run into a configure error. Solution: When CFLAGS changes delete auto/config.cache. Also avoid adding duplicate text to flags. v7.3.1221 Bram Moolenaar 2013-06-18 23:31:55 +02:00
  • db250526bb updated for version 7.3.1220 Problem: MS-Windows: When using wide font italic and bold are not included. Solution: Support wide-bold, wide-italic and wide-bold-italic. (Ken Takata, Taro Muraoka) v7.3.1220 Bram Moolenaar 2013-06-17 22:43:25 +02:00
  • a0c85c7ae1 updated for version 7.3.1219 Problem: No test for using []] inside \%[]. Solution: Add a test. v7.3.1219 Bram Moolenaar 2013-06-17 22:04:38 +02:00
  • 555d2a8340 updated for version 7.3.1218 Problem: "make test" on MS-Windows does not clean all temporary files and gives some unneccessary message. Solution: Clean the right files. Create .failed files. (Ken Takata) v7.3.1218 Bram Moolenaar 2013-06-17 21:53:37 +02:00
  • d79862599d updated for version 7.3.1217 Problem: New regexp engine: Can't handle \%[[ao]]. (Yukihiro Nakadaira) Solution: Support nested atoms inside \%[]. v7.3.1217 Bram Moolenaar 2013-06-17 21:33:41 +02:00
  • 6324c3b920 updated for version 7.3.1216 Problem: Configure can't find Motif on Ubuntu. Solution: Search for libXm in /usr/lib/*-linux-gnu. v7.3.1216 Bram Moolenaar 2013-06-17 20:27:18 +02:00
  • 06ae70d07c updated for version 7.3.1215 Problem: Compiler warning for function not defined. Solution: Add #ifdef. v7.3.1215 Bram Moolenaar 2013-06-17 19:26:36 +02:00
  • 01b626c26e updated for version 7.3.1214 Problem: Missing declaration for init_users() and realloc_post_list(). (Salman Halim) Solution: Add the declarations. v7.3.1214 Bram Moolenaar 2013-06-16 22:49:14 +02:00
  • 8c0e322f18 updated for version 7.3.1213 Problem: Can't build with small features and Python. Solution: Adjust #ifdefs. v7.3.1213 Bram Moolenaar 2013-06-16 17:32:40 +02:00
  • 6949eea7cc updated for version 7.3.1212 Problem: "make test" on MS-Windows does not report failure like Unix does. Solution: Make it work like on Unix. (Taro Muraoka) v7.3.1212 Bram Moolenaar 2013-06-16 16:57:46 +02:00
  • 5246cd7a9b updated for version 7.3.1211 Problem: MS-Windows: When 'encoding' differs from the current codepage ":hardcopy" does not work properly. Solution: Use TextOutW() and SetDlgItemTextW(). (Ken Takata) v7.3.1211 Bram Moolenaar 2013-06-16 16:41:47 +02:00
  • 03e114b0f2 updated for version 7.3.1210 Problem: 'backupcopy' default on MS-Windows is wrong when 'encoding' equals the current codepage. Solution: Change the #else block. (Ken Takata) v7.3.1210 Bram Moolenaar 2013-06-16 16:34:56 +02:00
  • 70baa405f2 updated for version 7.3.1209 Problem: No completion for ":tabdo". Solution: Add tabdo to the list of modifiers. (Dominique Pelle) v7.3.1209 Bram Moolenaar 2013-06-16 16:14:03 +02:00
  • 427d51c23f updated for version 7.3.1208 Problem: Compiler warnings on MS-Windows. Solution: Add type cast. Move variable declaration. (Mike Williams) v7.3.1208 Bram Moolenaar 2013-06-16 16:01:25 +02:00
  • a50d02d983 updated for version 7.3.1207 Problem: New regexp engine: no match found on "#if FOO". (Lech Lorens) Solution: When adding a state gets skipped don't adjust the index. v7.3.1207 Bram Moolenaar 2013-06-16 15:43:50 +02:00
  • 5ab9d98b9a updated for version 7.3.1206 Problem: Inconsistent function argument declarations. Solution: Use ANSI style. v7.3.1206 Bram Moolenaar 2013-06-16 14:25:57 +02:00
  • 926b5d3b30 updated for version 7.3.1205 Problem: logtalk.dict is not removed on uninstall. Solution: Remove the file. (Kazunobu Kuriyama) v7.3.1205 Bram Moolenaar 2013-06-16 14:20:13 +02:00
  • d69497413f updated for version 7.3.1204 Problem: Calling gettabwinvar() in 'tabline' cancels Visual mode. (Hirohito Higashi) Solution: Don't always use goto_tabpage_tp(). v7.3.1204 Bram Moolenaar 2013-06-16 14:18:28 +02:00
  • 4ce239b0b1 updated for version 7.3.1203 Problem: Matches from matchadd() might be highlighted incorrectly when they are at a fixed position and inserting lines. (John Szakmeister) Solution: Redraw all lines below a change if there are highlighted matches. (idea by Christian Brabandt) v7.3.1203 Bram Moolenaar 2013-06-15 23:00:30 +02:00
  • 3351679948 updated for version 7.3.1202 Problem: Tags are not found in case-folded tags file. (Darren cole, Issue 90) Solution: Take into account that when case folding was used for the tags file "!rm" sorts before the "!_TAG" header lines. v7.3.1202 Bram Moolenaar 2013-06-15 22:26:52 +02:00
  • e66f06d819 updated for version 7.3.1201 Problem: When a startup script creates a preview window, it probably becomes the current window. Solution: Make another window the current one. (Christian Brabandt) v7.3.1201 Bram Moolenaar 2013-06-15 21:54:16 +02:00
  • 52b91d801a Updated runtime files. Bram Moolenaar 2013-06-15 21:39:51 +02:00
  • df9259abce updated for version 7.3.1200 Problem: When calling setline() from Insert mode, using CTRL-R =, undo does not work properly. (Israel Chauca) Solution: Sync undo after evaluating the expression. (Christian Brabandt) v7.3.1200 Bram Moolenaar 2013-06-15 17:54:43 +02:00
  • dab38d516e updated for version 7.3.1199 Problem: When evaluating 'foldexpr' causes an error this is silently ignored and evaluation is retried every time. Solution: Set emsg_silent instead of emsg_off. Stop evaluating 'foldexpr' is it is causing errors. (Christian Brabandt) v7.3.1199 Bram Moolenaar 2013-06-15 17:06:36 +02:00
  • 9be6e21575 updated for version 7.3.1198 Problem: Build error when using Perl 5.18.0 and dynamic loading. Solution: Change #ifdefs for Perl_croak_xs_usage. (Ike Devolder) v7.3.1198 Bram Moolenaar 2013-06-15 16:47:35 +02:00
  • ff1806f8da updated for version 7.3.1197 Problem: ":wviminfo!" does not write history previously read from a viminfo file. (Roland Eggner) Solution: When not merging history write all entries. v7.3.1197 Bram Moolenaar 2013-06-15 16:31:47 +02:00
  • 141f6bb341 updated for version 7.3.1196 Problem: Old regexp engine does not match pattern with backref correctly. (Dominique Pelle) Solution: Fix setting status. Test multi-line patterns better. v7.3.1196 Bram Moolenaar 2013-06-15 15:09:50 +02:00
  • 4cff8faf05 updated for version 7.3.1195 Problem: Compiler warning for unitialized variable. (Tony Mechelynck) Solution: Set the length to the matching backref. v7.3.1195 Bram Moolenaar 2013-06-14 22:48:54 +02:00
  • 44c71db771 updated for version 7.3.1194 Problem: Yaml highlighting is slow. Solution: Tune the estimation of pattern failure chance. v7.3.1194 Bram Moolenaar 2013-06-14 22:33:51 +02:00
  • 1612b1abe7 updated for version 7.3.1193 Problem: fail_if_missing not used for Python 3. Solution: Give an error when Python 3 can't be configured. (Andrei Olsen) v7.3.1193 Bram Moolenaar 2013-06-14 21:22:39 +02:00
  • c5089bb8ff updated for version 7.3.1192 Problem: Valgrind reports errors when using backreferences. (Dominique Pelle) Solution: Do not check the end of submatches. v7.3.1192 Bram Moolenaar 2013-06-14 21:15:25 +02:00
  • 580abea48a updated for version 7.3.1191 Problem: Backreference to previous line doesn't work. (Lech Lorens) Solution: Implement looking in another line. v7.3.1191 Bram Moolenaar 2013-06-14 20:31:28 +02:00
  • 6e70736cbc updated for version 7.3.1190 Problem: Compiler warning for parentheses. (Christian Wellenbrock) Solution: Change #ifdef. v7.3.1190 Bram Moolenaar 2013-06-14 19:15:58 +02:00
  • 4c46b5e001 updated for version 7.3.1189 Problem: Highlighting is still wrong sometimes. (Dominique Pelle) Solution: Also restore reginput properly. v7.3.1189 Bram Moolenaar 2013-06-13 22:59:30 +02:00
  • 9d438d3b38 updated for version 7.3.1188 Problem: Newline characters messing up error message. Solution: Remove the newlines. (Kazunobu Kuriyama) v7.3.1188 Bram Moolenaar 2013-06-13 21:57:20 +02:00
  • 0c6633a7ea updated for version 7.3.1187 Problem: "s:" is recognized but "<SID>" is not. (ZyX) Solution: Translate "<SID>" like "s:". v7.3.1187 Bram Moolenaar 2013-06-13 21:24:06 +02:00
  • 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 Bram Moolenaar 2013-06-13 20:57:50 +02:00
  • 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 Bram Moolenaar 2013-06-13 20:19:40 +02:00
  • 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 Bram Moolenaar 2013-06-13 19:47:07 +02:00
  • 98bfc2d5ee Add missing files from 7.3.1183. Bram Moolenaar 2013-06-13 19:44:55 +02:00
  • 82850dd9cb updated for version 7.3.1183 Problem: Python tests 86 and 87 fail. Solution: Add "empty" files. (ZyX) v7.3.1183 Bram Moolenaar 2013-06-13 19:27:18 +02:00
  • 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 Bram Moolenaar 2013-06-12 22:41:37 +02:00
  • 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 Bram Moolenaar 2013-06-12 22:08:58 +02:00
  • ec7944aaf2 Update runtime files. Bram Moolenaar 2013-06-12 21:29:15 +02:00
  • 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 Bram Moolenaar 2013-06-12 21:25:23 +02:00
  • 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 Bram Moolenaar 2013-06-12 21:00:26 +02:00
  • 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 Bram Moolenaar 2013-06-12 20:35:58 +02:00
  • 6395af8018 updated for version 7.3.1177 Problem: Wasting memory on padding. Solution: Reorder struct fields. (Dominique Pelle) v7.3.1177 Bram Moolenaar 2013-06-12 19:52:15 +02:00
  • edb07a2d88 updated for version 7.3.1176 Problem: Compiler warnings on 64 bit system. Solution: Add type casts. (Mike Williams) v7.3.1176 Bram Moolenaar 2013-06-12 18:13:38 +02:00
  • 2d473ab932 updated for version 7.3.1175 Problem: Using isalpha() and isalnum() can be slow. Solution: Use range checks. (Mike Williams) v7.3.1175 Bram Moolenaar 2013-06-12 17:12:24 +02:00
  • 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 Bram Moolenaar 2013-06-12 14:41:04 +02:00
  • 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 Bram Moolenaar 2013-06-12 14:26:26 +02:00
  • 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 Bram Moolenaar 2013-06-12 14:20:36 +02:00
  • 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 Bram Moolenaar 2013-06-12 14:10:26 +02:00
  • 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 Bram Moolenaar 2013-06-12 13:37:43 +02:00
  • 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 Bram Moolenaar 2013-06-11 22:44:09 +02:00
  • 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 Bram Moolenaar 2013-06-11 20:53:28 +02:00
  • 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 Bram Moolenaar 2013-06-11 19:53:45 +02:00
  • 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 Bram Moolenaar 2013-06-11 18:48:21 +02:00
  • 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 Bram Moolenaar 2013-06-11 18:42:36 +02:00
  • 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 Bram Moolenaar 2013-06-11 18:40:13 +02:00
  • 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 Bram Moolenaar 2013-06-10 21:27:29 +02:00
  • f9c9b32bd1 updated for version 7.3.1162 Problem: Python: Memory leaks Solution: Add more Py_DECREF(). (ZyX) v7.3.1162 Bram Moolenaar 2013-06-10 20:47:36 +02:00
  • c1ba10c7f6 updated for version 7.3.1161 Problem: Python: PyList_SetItem() is inefficient. Solution: Use PyList_SET_ITEM() (ZyX) v7.3.1161 Bram Moolenaar 2013-06-10 20:39:03 +02:00
  • 570064cf21 updated for version 7.3.1160 Problem: Mixing long and pointer doesn't always work. Solution: Avoid cast to pointer. v7.3.1160 Bram Moolenaar 2013-06-10 20:25:10 +02:00
  • 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 Bram Moolenaar 2013-06-10 20:10:44 +02:00
  • 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 Bram Moolenaar 2013-06-10 18:36:24 +02:00
  • 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 Bram Moolenaar 2013-06-10 16:35:18 +02:00
  • 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 Bram Moolenaar 2013-06-09 20:51:00 +02:00
  • 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 Bram Moolenaar 2013-06-09 17:52:46 +02:00
  • 927d4a1fb5 updated for version 7.3.1154 Problem: New regexp_nfa engine: Uneccessary code. Solution: Remove uneccessary code. v7.3.1154 Bram Moolenaar 2013-06-09 17:25:34 +02:00
  • 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 Bram Moolenaar 2013-06-09 16:24:45 +02:00
  • a940aa6fc4 updated for version 7.3.1152 Problem: In tiny build ireg_icombine is undefined. (Tony Mechelynck) Solution: Add #ifdef. v7.3.1152 Bram Moolenaar 2013-06-08 23:30:04 +02:00
  • 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 Bram Moolenaar 2013-06-08 23:26:27 +02:00
  • 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 Bram Moolenaar 2013-06-08 22:30:03 +02:00
  • 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 Bram Moolenaar 2013-06-08 18:19:48 +02:00
  • cd9c46265e updated for version 7.3.1148 Problem: No command line completion for ":syntime". Solution: Implement the completion. (Dominique Pelle) v7.3.1148 Bram Moolenaar 2013-06-08 15:24:48 +02:00
  • 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 Bram Moolenaar 2013-06-08 14:38:27 +02:00
  • 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 Bram Moolenaar 2013-06-08 13:33:37 +02:00
  • 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 Bram Moolenaar 2013-06-07 22:39:40 +02:00
  • 2358403363 updated for version 7.3.1144 Problem: "RO" is not translated everywhere. Solution: Put inside _(). (Sergey Alyoshin) v7.3.1144 Bram Moolenaar 2013-06-07 20:17:11 +02:00
  • 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 Bram Moolenaar 2013-06-07 19:53:10 +02:00
  • 45fc539fe0 updated for version 7.3.1142 Problem: Memory leak in ":syntime report". Solution: Clear the grow array. (Dominique Pelle) v7.3.1142 Bram Moolenaar 2013-06-07 19:48:39 +02:00
  • a238431302 updated for version 7.3.1141 Problem: Win32: Check for available memory is not reliable and adds overhead. Solution: Remove mch_avail_mem(). (Mike Williams) v7.3.1141 Bram Moolenaar 2013-06-07 19:17:14 +02:00
  • 43e0298416 updated for version 7.3.1140 Problem: New regexp engine: trying expensive match while the result is not going to be used. Solution: Check for output state already being in the state list. v7.3.1140 Bram Moolenaar 2013-06-07 17:31:29 +02:00