- Jun 22, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warnings when building with Motif. Solution: Change set_label() argument. (Kazunobu Kuriyama)
-
- Jun 21, 2013
-
-
Bram Moolenaar authored
Problem: Clang gives warnings on xxd. Solution: Change how to use part of a string. (Dominique Pelle) Also avoid warning for return not reached.
-
- Jun 19, 2013
-
-
Bram Moolenaar authored
Problem: Tests fail on MS-Windows. Solution: Avoid depending on OS version. Use DOS commands instead of Unix commands. (Taro Muraoka, Ken Takata)
-
Bram Moolenaar authored
Problem: Cannot execute some tests from the src directoly. Solution: Add missing targets.
-
- Jun 18, 2013
-
-
Bram Moolenaar authored
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.
-
- Jun 17, 2013
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: No test for using []] inside \%[]. Solution: Add a test.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: New regexp engine: Can't handle \%[[ao]]. (Yukihiro Nakadaira) Solution: Support nested atoms inside \%[].
-
Bram Moolenaar authored
Problem: Configure can't find Motif on Ubuntu. Solution: Search for libXm in /usr/lib/*-linux-gnu.
-
Bram Moolenaar authored
Problem: Compiler warning for function not defined. Solution: Add #ifdef.
-
- Jun 16, 2013
-
-
Bram Moolenaar authored
Problem: Missing declaration for init_users() and realloc_post_list(). (Salman Halim) Solution: Add the declarations.
-
Bram Moolenaar authored
Problem: Can't build with small features and Python. Solution: Adjust #ifdefs.
-
Bram Moolenaar authored
Problem: "make test" on MS-Windows does not report failure like Unix does. Solution: Make it work like on Unix. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: MS-Windows: When 'encoding' differs from the current codepage ":hardcopy" does not work properly. Solution: Use TextOutW() and SetDlgItemTextW(). (Ken Takata)
-
Bram Moolenaar authored
Problem: 'backupcopy' default on MS-Windows is wrong when 'encoding' equals the current codepage. Solution: Change the #else block. (Ken Takata)
-
Bram Moolenaar authored
Problem: No completion for ":tabdo". Solution: Add tabdo to the list of modifiers. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Compiler warnings on MS-Windows. Solution: Add type cast. Move variable declaration. (Mike Williams)
-
Bram Moolenaar authored
Problem: New regexp engine: no match found on "#if FOO". (Lech Lorens) Solution: When adding a state gets skipped don't adjust the index.
-
Bram Moolenaar authored
Problem: Inconsistent function argument declarations. Solution: Use ANSI style.
-
Bram Moolenaar authored
Problem: logtalk.dict is not removed on uninstall. Solution: Remove the file. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
Problem: Calling gettabwinvar() in 'tabline' cancels Visual mode. (Hirohito Higashi) Solution: Don't always use goto_tabpage_tp().
-
- Jun 15, 2013
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: When a startup script creates a preview window, it probably becomes the current window. Solution: Make another window the current one. (Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Build error when using Perl 5.18.0 and dynamic loading. Solution: Change #ifdefs for Perl_croak_xs_usage. (Ike Devolder)
-
Bram Moolenaar authored
Problem: ":wviminfo!" does not write history previously read from a viminfo file. (Roland Eggner) Solution: When not merging history write all entries.
-
Bram Moolenaar authored
Problem: Old regexp engine does not match pattern with backref correctly. (Dominique Pelle) Solution: Fix setting status. Test multi-line patterns better.
-
- Jun 14, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning for unitialized variable. (Tony Mechelynck) Solution: Set the length to the matching backref.
-
Bram Moolenaar authored
Problem: Yaml highlighting is slow. Solution: Tune the estimation of pattern failure chance.
-
Bram Moolenaar authored
Problem: fail_if_missing not used for Python 3. Solution: Give an error when Python 3 can't be configured. (Andrei Olsen)
-
Bram Moolenaar authored
Problem: Valgrind reports errors when using backreferences. (Dominique Pelle) Solution: Do not check the end of submatches.
-
Bram Moolenaar authored
Problem: Backreference to previous line doesn't work. (Lech Lorens) Solution: Implement looking in another line.
-
Bram Moolenaar authored
Problem: Compiler warning for parentheses. (Christian Wellenbrock) Solution: Change #ifdef.
-
- Jun 13, 2013
-
-
Bram Moolenaar authored
Problem: Highlighting is still wrong sometimes. (Dominique Pelle) Solution: Also restore reginput properly.
-
Bram Moolenaar authored
Problem: Newline characters messing up error message. Solution: Remove the newlines. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
Problem: "s:" is recognized but "<SID>" is not. (ZyX) Solution: Translate "<SID>" like "s:".
-