summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-06-21updated for version 7.3.1224Bram Moolenaar
Problem: Clang gives warnings on xxd. Solution: Change how to use part of a string. (Dominique Pelle) Also avoid warning for return not reached.
2013-06-19updated for version 7.3.1223Bram Moolenaar
Problem: Tests fail on MS-Windows. Solution: Avoid depending on OS version. Use DOS commands instead of Unix commands. (Taro Muraoka, Ken Takata)
2013-06-19updated for version 7.3.1222Bram Moolenaar
Problem: Cannot execute some tests from the src directoly. Solution: Add missing targets.
2013-06-18updated for version 7.3.1221Bram Moolenaar
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.
2013-06-17updated for version 7.3.1220Bram Moolenaar
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)
2013-06-17updated for version 7.3.1219Bram Moolenaar
Problem: No test for using []] inside \%[]. Solution: Add a test.
2013-06-17updated for version 7.3.1218Bram Moolenaar
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)
2013-06-17updated for version 7.3.1217Bram Moolenaar
Problem: New regexp engine: Can't handle \%[[ao]]. (Yukihiro Nakadaira) Solution: Support nested atoms inside \%[].
2013-06-17updated for version 7.3.1216Bram Moolenaar
Problem: Configure can't find Motif on Ubuntu. Solution: Search for libXm in /usr/lib/*-linux-gnu.
2013-06-17updated for version 7.3.1215Bram Moolenaar
Problem: Compiler warning for function not defined. Solution: Add #ifdef.
2013-06-16updated for version 7.3.1214Bram Moolenaar
Problem: Missing declaration for init_users() and realloc_post_list(). (Salman Halim) Solution: Add the declarations.
2013-06-16updated for version 7.3.1213Bram Moolenaar
Problem: Can't build with small features and Python. Solution: Adjust #ifdefs.
2013-06-16updated for version 7.3.1212Bram Moolenaar
Problem: "make test" on MS-Windows does not report failure like Unix does. Solution: Make it work like on Unix. (Taro Muraoka)
2013-06-16updated for version 7.3.1211Bram Moolenaar
Problem: MS-Windows: When 'encoding' differs from the current codepage ":hardcopy" does not work properly. Solution: Use TextOutW() and SetDlgItemTextW(). (Ken Takata)
2013-06-16updated for version 7.3.1210Bram Moolenaar
Problem: 'backupcopy' default on MS-Windows is wrong when 'encoding' equals the current codepage. Solution: Change the #else block. (Ken Takata)
2013-06-16updated for version 7.3.1209Bram Moolenaar
Problem: No completion for ":tabdo". Solution: Add tabdo to the list of modifiers. (Dominique Pelle)
2013-06-16updated for version 7.3.1208Bram Moolenaar
Problem: Compiler warnings on MS-Windows. Solution: Add type cast. Move variable declaration. (Mike Williams)
2013-06-16updated for version 7.3.1207Bram Moolenaar
Problem: New regexp engine: no match found on "#if FOO". (Lech Lorens) Solution: When adding a state gets skipped don't adjust the index.
2013-06-16updated for version 7.3.1206Bram Moolenaar
Problem: Inconsistent function argument declarations. Solution: Use ANSI style.
2013-06-16updated for version 7.3.1205Bram Moolenaar
Problem: logtalk.dict is not removed on uninstall. Solution: Remove the file. (Kazunobu Kuriyama)
2013-06-16updated for version 7.3.1204Bram Moolenaar
Problem: Calling gettabwinvar() in 'tabline' cancels Visual mode. (Hirohito Higashi) Solution: Don't always use goto_tabpage_tp().
2013-06-15updated for version 7.3.1203Bram Moolenaar
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)
2013-06-15updated for version 7.3.1202Bram Moolenaar
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.
2013-06-15updated for version 7.3.1201Bram Moolenaar
Problem: When a startup script creates a preview window, it probably becomes the current window. Solution: Make another window the current one. (Christian Brabandt)
2013-06-15updated for version 7.3.1200Bram Moolenaar
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)
2013-06-15updated for version 7.3.1199Bram Moolenaar
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)
2013-06-15updated for version 7.3.1198Bram Moolenaar
Problem: Build error when using Perl 5.18.0 and dynamic loading. Solution: Change #ifdefs for Perl_croak_xs_usage. (Ike Devolder)
2013-06-15updated for version 7.3.1197Bram Moolenaar
Problem: ":wviminfo!" does not write history previously read from a viminfo file. (Roland Eggner) Solution: When not merging history write all entries.
2013-06-15updated for version 7.3.1196Bram Moolenaar
Problem: Old regexp engine does not match pattern with backref correctly. (Dominique Pelle) Solution: Fix setting status. Test multi-line patterns better.
2013-06-14updated for version 7.3.1195Bram Moolenaar
Problem: Compiler warning for unitialized variable. (Tony Mechelynck) Solution: Set the length to the matching backref.
2013-06-14updated for version 7.3.1194Bram Moolenaar
Problem: Yaml highlighting is slow. Solution: Tune the estimation of pattern failure chance.
2013-06-14updated for version 7.3.1193Bram Moolenaar
Problem: fail_if_missing not used for Python 3. Solution: Give an error when Python 3 can't be configured. (Andrei Olsen)
2013-06-14updated for version 7.3.1192Bram Moolenaar
Problem: Valgrind reports errors when using backreferences. (Dominique Pelle) Solution: Do not check the end of submatches.
2013-06-14updated for version 7.3.1191Bram Moolenaar
Problem: Backreference to previous line doesn't work. (Lech Lorens) Solution: Implement looking in another line.
2013-06-14updated for version 7.3.1190Bram Moolenaar
Problem: Compiler warning for parentheses. (Christian Wellenbrock) Solution: Change #ifdef.
2013-06-13updated for version 7.3.1189Bram Moolenaar
Problem: Highlighting is still wrong sometimes. (Dominique Pelle) Solution: Also restore reginput properly.
2013-06-13updated for version 7.3.1188Bram Moolenaar
Problem: Newline characters messing up error message. Solution: Remove the newlines. (Kazunobu Kuriyama)
2013-06-13updated for version 7.3.1187Bram Moolenaar
Problem: "s:" is recognized but "<SID>" is not. (ZyX) Solution: Translate "<SID>" like "s:".
2013-06-13updated for version 7.3.1186Bram Moolenaar
Problem: Python 3: test 87 may crash. Solution: Use _PyArg_Parse_SizeT instead of PyArg_Parse. (Jun Takimoto)
2013-06-13updated for version 7.3.1185Bram Moolenaar
Problem: New regexp engine: no match with ^ after \n. (SungHyun Nam) Solution: Fix it, add a test.
2013-06-13updated for version 7.3.1184Bram Moolenaar
Problem: Highlighting is sometimes wrong. (Axel Bender) Solution: Fetch regline again when returning from recursive regmatch.
2013-06-13Add missing files from 7.3.1183.Bram Moolenaar
2013-06-13updated for version 7.3.1183Bram Moolenaar
Problem: Python tests 86 and 87 fail. Solution: Add "empty" files. (ZyX)
2013-06-12updated for version 7.3.1182Bram Moolenaar
Problem: 'backupcopy' default on MS-Windows does not work for hard and soft links. Solution: Check for links. (David Pope, Ken Takata)
2013-06-12updated for version 7.3.1181Bram Moolenaar
Problem: Wrong error message for 1.0[0]. Solution: Check for funcref and float separately. (Yasuhiro Matsumoto)
2013-06-12Update runtime files.Bram Moolenaar
2013-06-12updated for version 7.3.1180Bram Moolenaar
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-12updated for version 7.3.1179Bram Moolenaar
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-12updated for version 7.3.1178Bram Moolenaar
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-12updated for version 7.3.1177Bram Moolenaar
Problem: Wasting memory on padding. Solution: Reorder struct fields. (Dominique Pelle)