summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.1260v7.3.1260Bram Moolenaar2013-06-293-12/+15
| | | | | | Problem: User completion does not get the whole command line in the command line window. Solution: Pass on the whole command line. (Daniel Thau)
* updated for version 7.3.1259v7.3.1259Bram Moolenaar2013-06-293-1/+8
| | | | | Problem: No test for patch 7.3.1258 Solution: Add a test entry.
* updated for version 7.3.1258v7.3.1258Bram Moolenaar2013-06-282-0/+5
| | | | | Problem: Using submatch() may crash Vim. (Ingo Karkat) Solution: Restore the number of subexpressions used.
* updated for version 7.3.1257v7.3.1257Bram Moolenaar2013-06-282-0/+5
| | | | | | Problem: With GNU gettext() ":lang de_DE.utf8" does not always result in German messages. Solution: Clear the $LANGUAGE environment variable.
* updated for version 7.3.1256v7.3.1256Bram Moolenaar2013-06-283-4/+17
| | | | | Problem: Can't build without eval or autocmd feature. Solution: Add #ifdefs.
* Update runtime files. Remove duplicate tags in help.Bram Moolenaar2013-06-287-130/+56
|
* updated for version 7.3.1255v7.3.1255Bram Moolenaar2013-06-272-2/+4
| | | | | Problem: Clang warnings when building with Athena. Solution: Add type casts. (Dominique Pelle)
* updated for version 7.3.1254v7.3.1254Bram Moolenaar2013-06-272-3/+7
| | | | | Problem: Can't build without the multi-lang feature. (John Marriott) Solution: Add #ifdef.
* updated for version 7.3.1253v7.3.1253Bram Moolenaar2013-06-272-3/+7
| | | | | | Problem: Still undo problem after using CTRL-R = setline(). (Hirohito Higashi) Solution: Set the ins_need_undo flag.
* updated for version 7.3.1252v7.3.1252Bram Moolenaar2013-06-272-1/+5
| | | | | | | Problem: Gvim does not find the toolbar bitmap files in ~/vimfiles/bitmaps if the corresponding menu command contains additional characters like the shortcut marker '&' or if you use a non-english locale. Solution: Use menu->en_dname or menu->dname. (Martin Gieseking)
* updated for version 7.3.1251v7.3.1251Bram Moolenaar2013-06-262-1/+3
| | | | | Problem: Test 61 messes up viminfo. Solution: Specify a separate viminfo file.
* updated for version 7.3.1250v7.3.1250Bram Moolenaar2013-06-263-8/+10
| | | | | Problem: Python tests fail on MS-Windows. Solution: Change backslashes to slashes. (Taro Muraoka)
* updated for version 7.3.1249v7.3.1249Bram Moolenaar2013-06-262-1/+4
| | | | | Problem: Modeline not recognized when using "Vim" instead of "vim". Solution: Also accept "Vim".
* updated for version 7.3.1248v7.3.1248Bram Moolenaar2013-06-267-31/+93
| | | | | | Problem: Still have old hacking code for Input Method. Solution: Add 'imactivatefunc' and 'imstatusfunc' as a generic solution to Input Method activation. (Yukihiro Nakadaira)
* updated for version 7.3.1247v7.3.1247Bram Moolenaar2013-06-264-8/+15
| | | | | | Problem: New regexp engine: '[ ]\@!\p\%([ ]\@!\p\)*:' does not always match. Solution: When there is a PIM add a duplicate state that starts at another position.
* updated for version 7.3.1246v7.3.1246Bram Moolenaar2013-06-262-2/+54
| | | | | | | Problem: When setting 'winfixheight' and resizing the window causes the window layout to be wrong. Solution: Add frame_check_height() and frame_check_width() (Yukihiro Nakadaira)
* Updated runtime files. New version of TOhtml plugin.Bram Moolenaar2013-06-266-105/+177
|
* updated for version 7.3.1245v7.3.1245Bram Moolenaar2013-06-262-2/+4
| | | | | | Problem: MS-Windows: confirm() dialog text may still not fit. Solution: Use GetTextWidthEnc() instead of GetTextWidth() in two more places. (Yasuhiro Matsumoto)
* updated for version 7.3.1244v7.3.1244Bram Moolenaar2013-06-262-1/+3
| | | | | | Problem: MS-Windows: confirm() dialog text may not fit. Solution: Use GetTextWidthEnc() instead of GetTextWidth(). (Yasuhiro Matsumoto)
* updated for version 7.3.1243v7.3.1243Bram Moolenaar2013-06-264-4/+24
| | | | | | Problem: New regexp engine: back references in look-behind match don't work. (Lech Lorens) Solution: Copy the submatches before a recursive match.
* updated for version 7.3.1242v7.3.1242Bram Moolenaar2013-06-242-1/+16
| | | | | | Problem: No failure when trying to use a number as a string. Solution: Give an error when StringToLine() is called with an instance of the wrong type. (Jun Takimoto)
* updated for version 7.3.1241v7.3.1241Bram Moolenaar2013-06-242-0/+6
| | | | | Problem: Some test files missing from the distribution. Solution: Update the list of files.
* Update runtime files.Bram Moolenaar2013-06-2416-79/+676
|
* updated for version 7.3.1240v7.3.1240Bram Moolenaar2013-06-242-1/+3
| | | | | Problem: Memory leak in findfile(). Solution: Free the memory. (Christian Brabandt)
* updated for version 7.3.1239v7.3.1239Bram Moolenaar2013-06-243-8/+17
| | | | | Problem: Can't build with Python and MSVC10. Solution: Move #if outside of macro. (Taro Muraoka)
* updated for version 7.3.1238v7.3.1238Bram Moolenaar2013-06-242-2/+4
| | | | | | Problem: Crash in Python interface on 64 bit machines. Solution: Change argument type of PyString_AsStringAndSize. (Taro Muraoka, Jun Takimoto)
* updated for version 7.3.1237v7.3.1237Bram Moolenaar2013-06-234-2/+12
| | | | | Problem: Python: non-import errors not handled correctly. Solution: Let non-ImportError exceptions pass the finder. (ZyX)
* updated for version 7.3.1236v7.3.1236Bram Moolenaar2013-06-2314-225/+549
| | | | | Problem: Python: WindowSetattr() missing support for NUMBER_UNSIGNED. Solution: Add NUMBER_UNSIGNED, add more tests. Various fixes. (ZyX)
* updated for version 7.3.1235v7.3.1235Bram Moolenaar2013-06-232-2/+4
| | | | | 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)
* updated for version 7.3.1234v7.3.1234Bram Moolenaar2013-06-232-86/+92
| | | | | Problem: Python: Strings are not marked for translation. Solution: Add N_() where appropriate. (ZyX)
* updated for version 7.3.1233v7.3.1233Bram Moolenaar2013-06-236-666/+929
| | | | | | Problem: Various Python problems. Solution: Fix VimTryEnd. Crash with debug build and PYTHONDUMPREFS=1. Memory leaks in StringToLine(), BufferMark() and convert_dl. (ZyX)
* updated for version 7.3.1232v7.3.1232Bram Moolenaar2013-06-233-241/+266
| | | | | Problem: Python: inconsistencies in variable names. Solution: Rename variables. (ZyX)
* updated for version 7.3.1231v7.3.1231Bram Moolenaar2013-06-236-44/+154
| | | | | Problem: Python: use of numbers not consistent. Solution: Add support for Number protocol. (ZyX)
* updated for version 7.3.1230v7.3.1230Bram Moolenaar2013-06-236-295/+347
| | | | | Problem: Python: Exception messages are not clear. Solution: Make exception messages more verbose. (ZyX)
* updated for version 7.3.1229v7.3.1229Bram Moolenaar2013-06-233-111/+114
| | | | | | Problem: Python: not so easy to delete/restore translating. Solution: Make macros do translation of exception messages. (ZyX) Note: this breaks translations!
* updated for version 7.3.1228v7.3.1228Bram Moolenaar2013-06-234-44/+47
| | | | | | | 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)
* updated for version 7.3.1227v7.3.1227Bram Moolenaar2013-06-234-58/+72
| | | | | | Problem: Inconsistent string conversion. Solution: Use 'encoding' instead of utf-8. Use METH_O in place of METH_VARARGS where appropriate. (ZyX)
* updated for version 7.3.1226v7.3.1226Bram Moolenaar2013-06-234-30/+26
| | | | | Problem: Python: duplicate code. Solution: Share code between OutputWrite() and OutputWritelines(). (ZyX)
* updated for version 7.3.1225v7.3.1225Bram Moolenaar2013-06-222-2/+4
| | | | | Problem: Compiler warnings when building with Motif. Solution: Change set_label() argument. (Kazunobu Kuriyama)
* updated for version 7.3.1224v7.3.1224Bram Moolenaar2013-06-213-4/+6
| | | | | | Problem: Clang gives warnings on xxd. Solution: Change how to use part of a string. (Dominique Pelle) Also avoid warning for return not reached.
* updated for version 7.3.1223v7.3.1223Bram Moolenaar2013-06-195-16/+43
| | | | | | Problem: Tests fail on MS-Windows. Solution: Avoid depending on OS version. Use DOS commands instead of Unix commands. (Taro Muraoka, Ken Takata)
* updated for version 7.3.1222v7.3.1222Bram Moolenaar2013-06-192-10/+12
| | | | | Problem: Cannot execute some tests from the src directoly. Solution: Add missing targets.
* updated for version 7.3.1221v7.3.1221Bram Moolenaar2013-06-184-8/+25
| | | | | | | 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.
* updated for version 7.3.1220v7.3.1220Bram Moolenaar2013-06-174-3/+77
| | | | | | 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)
* updated for version 7.3.1219v7.3.1219Bram Moolenaar2013-06-173-0/+6
| | | | | Problem: No test for using []] inside \%[]. Solution: Add a test.
* updated for version 7.3.1218v7.3.1218Bram Moolenaar2013-06-172-4/+11
| | | | | | 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)
* updated for version 7.3.1217v7.3.1217Bram Moolenaar2013-06-174-2/+11
| | | | | Problem: New regexp engine: Can't handle \%[[ao]]. (Yukihiro Nakadaira) Solution: Support nested atoms inside \%[].
* updated for version 7.3.1216v7.3.1216Bram Moolenaar2013-06-173-5/+13
| | | | | Problem: Configure can't find Motif on Ubuntu. Solution: Search for libXm in /usr/lib/*-linux-gnu.
* updated for version 7.3.1215v7.3.1215Bram Moolenaar2013-06-172-0/+4
| | | | | Problem: Compiler warning for function not defined. Solution: Add #ifdef.
* updated for version 7.3.1214v7.3.1214Bram Moolenaar2013-06-163-1/+6
| | | | | | Problem: Missing declaration for init_users() and realloc_post_list(). (Salman Halim) Solution: Add the declarations.