1
0
forked from aniani/vim

Commit Graph

  • 268b55b5fb updated for version 7.4.035 Problem: MS-Windows: The mouse pointer flickers when going from command line mode to Normal mode. Solution: Check for WM_NCMOUSEMOVE. (Ken Takata) v7.4.035 Bram Moolenaar 2013-09-22 15:43:37 +02:00
  • ec11aef914 updated for version 7.4.034 Problem: Using "p" in Visual block mode only changes the first line. Solution: Repeat the put in all text in the block. (Christian Brabandt) v7.4.034 Bram Moolenaar 2013-09-22 15:23:44 +02:00
  • 6848c8b561 updated for version 7.4.033 Problem: When the terminal has only 20 lines test 92 and 93 overwrite the input file. Solution: Explicitly write test.out. Check that the terminal is large enough to run the tests. (Hirohito Higashi) v7.4.033 Bram Moolenaar 2013-09-22 15:03:38 +02:00
  • baca7f705b Update runtime files. Add support for J. Bram Moolenaar 2013-09-22 14:42:24 +02:00
  • 595cad2ea1 updated for version 7.4.032 Problem: NFA engine does not match the NUL character. (Jonathon Merz) Solution: Ues 0x0a instead of NUL. (Christian Brabandt) v7.4.032 Bram Moolenaar 2013-09-22 13:57:24 +02:00
  • 00462ffb7d updated for version 7.4.031 Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles Cooper) Solution: Only resets related options in a window where 'diff' is set. v7.4.031 Bram Moolenaar 2013-09-20 20:13:53 +02:00
  • 9952c102dd updated for version 7.4.030 Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall) v7.4.030 Bram Moolenaar 2013-09-19 20:49:04 +02:00
  • 745c6eb29b Add files missing from 7.4.028. Bram Moolenaar 2013-09-19 17:04:30 +02:00
  • 917789fdf7 updated for version 7.4.029 Problem: An error in a pattern is reported twice. Solution: Remove the retry with the backtracking engine, it won't work. v7.4.029 Bram Moolenaar 2013-09-19 17:04:01 +02:00
  • e6a2fa6573 updated for version 7.4.028 Problem: Equivalence classes are not working for multi-byte characters. Solution: Copy the rules from the old to the new regexp engine. Add a test to check both engines. v7.4.028 Bram Moolenaar 2013-09-19 17:00:20 +02:00
  • dd40734800 updated for version 7.4.027 Problem: Another valgrind error when using CTRL-X CTRL-F at the start of the line. (Dominique Pelle) Solution: Don't call mb_ptr_back() at the start of the line. Add a test. v7.4.027 Bram Moolenaar 2013-09-08 20:00:48 +02:00
  • 95235e64d8 updated for version 7.4.026 Problem: Clang warning for int shift overflow. Solution: Use unsigned and cast back to int. (Dominique Pelle) v7.4.026 Bram Moolenaar 2013-09-08 16:07:07 +02:00
  • 0300e465aa updated for version 7.4.025 Problem: Reading before start of a string. Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle) v7.4.025 Bram Moolenaar 2013-09-08 16:03:45 +02:00
  • 3b26239341 updated for version 7.4.024 Problem: When root edits a file the undo file is owned by root while the edited file may be owned by another user, which is not allowed. (cac2s) Solution: Accept an undo file owned by the current user. v7.4.024 Bram Moolenaar 2013-09-08 15:40:49 +02:00
  • 3b7ac49e26 updated for version 7.4.023 Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams) v7.4.023 Bram Moolenaar 2013-09-07 16:35:42 +02:00
  • 7cba6c0636 Updated runtime files. Bram Moolenaar 2013-09-05 22:13:31 +02:00
  • bec9c20884 updated for version 7.4.022 Problem: Deadlock while exiting, because of allocating memory. Solution: Do not use gettext() in deathtrap(). (James McCoy) v7.4.022 Bram Moolenaar 2013-09-05 21:41:39 +02:00
  • 9be4481892 updated for version 7.4.021 Problem: NFA regexp: Using \ze in one branch which doesn't match may cause end of another branch to be wrong. (William Fugh) Solution: Set end position if it wasn't set yet. v7.4.021 Bram Moolenaar 2013-09-05 21:15:44 +02:00
  • 78c93e4b6a updated for version 7.4.020 Problem: NFA engine matches too much with \@>. (John McGowan) Solution: When a whole pattern match is found stop searching. v7.4.020 Bram Moolenaar 2013-09-05 16:05:36 +02:00
  • 00b764aa41 updated for version 7.4.019 Problem: MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Take care of multi-byte characters when looking for the start of the file name. (Ken Takata) v7.4.019 Bram Moolenaar 2013-09-05 13:50:53 +02:00
  • f0d9e00537 updated for version 7.4.018 Problem: When completing item becomes unselected. (Shougo Matsu) Solution: Revert patch 7.3.1269. v7.4.018 Bram Moolenaar 2013-09-05 12:49:52 +02:00
  • 966d71c852 updated for version 7.4.017 Problem: ":help !!" does not find the "!!" tag in the help file. (Ben Fritz) Solution: When reading the start of the tags file do parse lines that are not header lines. v7.4.017 Bram Moolenaar 2013-09-05 12:06:33 +02:00
  • 65f04f67f1 updated for version 7.4.016 Problem: MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Add fname_casew(). (Ken Takata) v7.4.016 Bram Moolenaar 2013-08-30 17:29:16 +02:00
  • 4dee1bb0db updated for version 7.4.015 Problem: MS-Windows: Detecting node type does not work for multi-byte characters. Solution: Use wide character function when needed. (Ken Takata) v7.4.015 Bram Moolenaar 2013-08-30 17:11:33 +02:00
  • 4e4f529792 updated for version 7.4.014 Problem: MS-Windows: check for writing to device does not work. Solution: Fix #ifdefs. (Ken Takata) v7.4.014 Bram Moolenaar 2013-08-30 17:07:01 +02:00
  • d2a203bb58 updated for version 7.4.013 Problem: File name buffer too small for utf-8. Solution: Use character count instead of byte count. (Ken Takata) v7.4.013 Bram Moolenaar 2013-08-30 16:51:18 +02:00
  • 604729e75b updated for version 7.4.012 Problem: MS-Windows: resolving shortcut does not work properly with multi-byte characters. Solution: Use wide system functions. (Ken Takata) v7.4.012 Bram Moolenaar 2013-08-30 16:44:19 +02:00
  • b5ef5e1c21 updated for version 7.4.011 Problem: Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata) v7.4.011 Bram Moolenaar 2013-08-30 16:35:44 +02:00
  • 195ef0ccb2 updated for version 7.4.010 Problem: Crash with invalid argument to mkdir(). Solution: Check for empty string. (lcd47) v7.4.010 Bram Moolenaar 2013-08-30 16:00:08 +02:00
  • cf81aefd9c updated for version 7.4.009 Problem: When a file was not decrypted (yet), writing it may destroy the contents. Solution: Mark the file as readonly until decryption was done. (Christian Brabandt) v7.4.009 Bram Moolenaar 2013-08-25 17:46:08 +02:00
  • 41f1205fef updated for version 7.4.008 Problem: New regexp engine can't be interrupted. Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto) v7.4.008 Bram Moolenaar 2013-08-25 17:01:42 +02:00
  • 74cd624fde updated for version 7.4.007 Problem: Creating a preview window on startup leaves the screen layout in a messed up state. (Marius Gedminas) Solution: Don't change firstwin. (Christian Brabandt) v7.4.007 Bram Moolenaar 2013-08-22 14:14:27 +02:00
  • 67652c2935 updated for version 7.4.006 Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett) Solution: Remove the trailing slash. (lcd) v7.4.006 Bram Moolenaar 2013-08-22 12:06:55 +02:00
  • c56c459075 updated for version 7.4.005 Problem: Using "vaB" while 'virtualedit' is set selects the wrong area. (Dimitar Dimitrov) Solution: Reset coladd when finding a match. v7.4.005 Bram Moolenaar 2013-08-14 17:45:29 +02:00
  • c93df6b075 updated for version 7.4.004 Problem: When closing a window fails ":bwipe" may hang. Solution: Let win_close() return FAIL and break out of the loop. v7.4.004 Bram Moolenaar 2013-08-14 17:11:20 +02:00
  • ebefd997bb updated for version 7.4.003 Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow) Solution: Refresh stale pointer. (James McCoy) v7.4.003 Bram Moolenaar 2013-08-14 14:18:40 +02:00
  • 3f0df06c28 updated for version 7.4.002 Problem: Pattern with two alternative look-behind matches does not match. (Amadeus Demarzi) Solution: When comparing PIMs also compare their state ID to see if they are different. v7.4.002 Bram Moolenaar 2013-08-14 13:34:25 +02:00
  • 1cfad52a03 updated for version 7.4.001 Problem: Character classes such as [a-z] to not react to 'ignorecase'. Breaks man page highlighting. (Mario Grgic) Solution: Add separate items for classes that react to 'ignorecase'. Clean up logic handling character classes. Add more tests. v7.4.001 Bram Moolenaar 2013-08-14 12:06:49 +02:00
  • 3b1db36689 release version 7.4 v7.4 Bram Moolenaar 2013-08-10 15:00:24 +02:00
  • b7512b79ce updated for version 7.4b.022 Problem: Not waiting for a character when the tick count overflows. Solution: Subtract the unsigned numbers and cast to int. (Ken Takata) v7.4b.022 Bram Moolenaar 2013-08-10 12:45:09 +02:00
  • b09129684b updated for version 7.4b.021 Problem: Pressing "u" after an external command results in multiple press-enter messages. (glts) Solution: Don't call hit_return_msg() when we have K_IGNORE. (Christian Brabandt) v7.4b.021 Bram Moolenaar 2013-08-09 20:38:26 +02:00
  • f17968b54a updated for version 7.4b.020 Problem: "g~ap" changes first character of next paragraph. (Manuel Ortega) Solution: Avoid subtracting (0 - 1) from todo. (Mike Williams) v7.4b.020 Bram Moolenaar 2013-08-09 19:48:40 +02:00
  • 86f931e1c3 updated for version 7.4b.019 Problem: Tabline is not updated properly when closing a tab on Win32. Solution: Only reduce flickering when adding a tab. (Ken Takata) v7.4b.019 Bram Moolenaar 2013-08-07 21:13:23 +02:00
  • a95d823554 updated for version 7.4b.018 Problem: Win32: Dialog can still be too big. Solution: Move the check for height further down. (Andrei Olsen) v7.4b.018 Bram Moolenaar 2013-08-07 15:27:11 +02:00
  • d82db6046c updated for version 7.4b.017 Problem: ":he \^x" gives a strange error message. (glts) Solution: Do not translate \^x to \_CTRL-x. v7.4b.017 Bram Moolenaar 2013-08-07 15:24:41 +02:00
  • 026a445c40 updated for version 7.4b.016 Problem: Ruby detection fails on Fedora 19. Solution: Use one way to get the Ruby version. (Michael Henry) v7.4b.016 Bram Moolenaar 2013-08-07 15:22:23 +02:00
  • 01c458e438 updated for version 7.4b.015 Problem: Can't compile without the 'acd' feature. Solution: Add #ifdefs. (Kazunobu Kuriyama) v7.4b.015 Bram Moolenaar 2013-08-05 22:02:20 +02:00
  • 9d98fe9cae Update runtime files. Bram Moolenaar 2013-08-03 18:35:36 +02:00
  • f40f4ab8df updated for version 7.4b.014 Problem: Stupid mistake. Solution: Changle "len" to "i". v7.4b.014 Bram Moolenaar 2013-08-03 17:31:28 +02:00
  • 48483dbaf7 updated for version 7.4b.013 Problem: Install dir for JP man pages is wrong. Solution: Remove ".UTF-8" from the directory name. (Ken Takata) v7.4b.013 Bram Moolenaar 2013-08-03 17:21:26 +02:00
  • fb332a2b33 updated for version 7.4b.012 Problem: Output from a shell command is truncated at a NUL. (lcd 47) Solution: Change every NUL into an SOH. v7.4b.012 Bram Moolenaar 2013-08-03 14:10:50 +02:00
  • c528b1d1ed updated for version 7.4b.011 Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list. v7.4b.011 Bram Moolenaar 2013-08-03 13:41:15 +02:00
  • 364ab2ffd3 updated for version 7.4b.010 Problem: Win32: Tcl library load does not use standard mechanism. Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata) v7.4b.010 Bram Moolenaar 2013-08-02 20:05:32 +02:00
  • bc88a27537 updated for version 7.4b.009 Problem: When setting the Visual area manually and 'selection' is exclusive, a yank includes one character too much. (Ingo Karkat) Solution: Default the Visual operation to "v". (Christian Brabandt) v7.4b.009 Bram Moolenaar 2013-08-02 17:22:23 +02:00
  • 4008f4fb08 updated for version 7.4b.008 Problem: 'autochdir' causes setbufvar() to change the current directory. (Ben Fritz) Solution: When disabling autocommands also reset 'acd' temporarily. (Christian Brabandt) v7.4b.008 Bram Moolenaar 2013-08-02 17:08:13 +02:00
  • aee1f4a5b5 updated for version 7.4b.007 Problem: On 32 bit MS-Windows :perldo does not work. Solution: Make sure time_t uses 32 bits. (Ken Takata) v7.4b.007 Bram Moolenaar 2013-08-02 16:10:32 +02:00
  • a946afe075 updated for version 7.4b.006 Problem: Using \{n,m} in an autocommand pattern no longer works. Specifically, mutt temp files are not recognized. (Gary Johnson) Solution: Make \\\{n,m\} work. v7.4b.006 Bram Moolenaar 2013-08-02 15:22:39 +02:00
  • 542805a59d updated for version 7.4b.005 Problem: Finding %s in shellpipe and shellredir does not ignore %%s. Solution: Skip over %%. (lcd 47) v7.4b.005 Bram Moolenaar 2013-08-02 14:15:13 +02:00
  • eec3e1e72a updated for version 7.4b.004 Problem: Regexp crash on pattern "@\%[\w\-]*". (Axel Kielhorn) Solution: Add \%(\) around \%[] internally. v7.4b.004 Bram Moolenaar 2013-08-01 18:38:26 +02:00
  • 6dbe68cd9e updated for version 7.4b.003 Problem: Regexp code is not nicely aligned. Solution: Adjust white space. (Ken Takata) v7.4b.003 Bram Moolenaar 2013-08-01 16:21:34 +02:00
  • 398d53decf updated for version 7.4b.002 Problem: Crash searching for \%(\%(\|\d\|-\|\.\)*\|\*\). (Marcin Szamotulski) Also for \(\)*. Solution: Do add a state for opening parenthesis, so that we can check if it was added before at the same position. v7.4b.002 Bram Moolenaar 2013-08-01 15:45:52 +02:00
  • 1b1b09449f updated for version 7.4b.001 Problem: Win32: dialog may extend off-screen. Solution: Reduce the size, use correct borders. (Andrei Olsen) v7.4b.001 Bram Moolenaar 2013-08-01 13:20:42 +02:00
  • 1a42b4befb Update files for the 7.4b BETA release. v7.4b.000 Bram Moolenaar 2013-07-28 18:29:08 +02:00
  • 1a4a75c5dc updated for version 7.4a.047 Problem: Some comments are not so nice. Solution: Change the comments. v7.4a.047 Bram Moolenaar 2013-07-28 16:03:06 +02:00
  • 16ea3676db Updated runtime files. Bram Moolenaar 2013-07-28 16:02:18 +02:00
  • a2320f43ea updated for version 7.4a.046 Problem: Can't build without mbyte feature. Solution: Add #ifdefs. v7.4a.046 Bram Moolenaar 2013-07-28 15:16:19 +02:00
  • e855ccf90a updated for version 7.4a.045 Problem: Configure does not always find the right library for Lua. Missing support for LuaJit. Solution: Improve the configure detection of Lua. (Hiroshi Shirosaki) v7.4a.045 Bram Moolenaar 2013-07-28 13:32:15 +02:00
  • e2db695d31 Updated runtime files. Bram Moolenaar 2013-07-24 19:53:36 +02:00
  • ff18df03c3 updated for version 7.4a.044 Problem: Test 96 sometimes fails. Solution: Clear window from b_wininfo in win_free(). (Suggestion by Yukihiro Nakadaira) v7.4a.044 Bram Moolenaar 2013-07-24 17:51:57 +02:00
  • af003f6384 updated for version 7.4a.043 Problem: More ml_get errors when adding or deleting lines from Python. (Vlad Irnov) Solution: Switch to a window with the buffer when possible. v7.4a.043 Bram Moolenaar 2013-07-24 17:11:46 +02:00
  • 2b90ed294e updated for version 7.4a.042 Problem: Crash when BufUnload autocommands close all buffers. (Andrew Pimlott) Solution: Set curwin->w_buffer to curbuf to avoid NULL. v7.4a.042 Bram Moolenaar 2013-07-24 16:02:36 +02:00
  • ad875fb7ff updated for version 7.4a.041 Problem: When using ":new ++ff=unix" and "dos" is first in 'fileformats' then 'ff' is set to "dos" instead of "unix". (Ingo Karkat) Solution: Create set_file_options() and invoke it from do_ecmd(). v7.4a.041 Bram Moolenaar 2013-07-24 15:02:03 +02:00
  • e24a9c0b59 updated for version 7.4a.040 Problem: Win32: using uninitialized variable. Solution: (Yukihiro Nakadaira) v7.4a.040 Bram Moolenaar 2013-07-24 13:49:22 +02:00
  • 196ed14d15 updated for version 7.4a.039 Problem: New regexp engine doesn't match pattern. (Ingo Karkat) Solution: When adding a state also check for different PIM if the list of states has any state with a PIM. v7.4a.039 Bram Moolenaar 2013-07-21 18:59:24 +02:00
  • 9d48895e4c updated for version 7.4a.038 Problem: When using MSVC 2012 there are various issues, including GUI size computations. Solution: Use SM_CXPADDEDBORDER. (Mike Williams) v7.4a.038 Bram Moolenaar 2013-07-21 17:53:58 +02:00
  • 5f919ee8eb updated for version 7.4a.037 Problem: Win32: When mouse is hidden and in the toolbar, moving it won't make it appear. (Sami Salonen) Solution: Add tabline_wndproc() and toolbar_wndproc(). (Ken Takata) v7.4a.037 Bram Moolenaar 2013-07-21 17:46:43 +02:00
  • ac7c33e38c updated for version 7.4a.036 Problem: "\p" in a regexp does not match double-width characters. (Yukihiro Nakadaira) Solution: Don't count display cells, use vim_isprintc(). v7.4a.036 Bram Moolenaar 2013-07-21 17:06:00 +02:00
  • 9ba7e17de1 Updated runtime files. Bram Moolenaar 2013-07-17 22:37:26 +02:00
  • e53c8616f1 updated for version 7.4a.035 Problem: Fix in patch 7.4a.032 is not tested. Solution: Add test. v7.4a.035 Bram Moolenaar 2013-07-17 22:35:39 +02:00
  • a8f96397a1 updated for version 7.4a.034 Problem: The tabline may flicker when opening a new tab after 7.3.759 on Win32. Solution: Move call to TabCtrl_SetCurSel(). (Ken Takata) v7.4a.034 Bram Moolenaar 2013-07-17 21:59:13 +02:00
  • b7a846d0e0 updated for version 7.4a.033 Problem: Test 98 always passes. Solution: Include test98a.in in test98.in, execute the crucial command in one line. (Yukihiro Nakadaira) v7.4a.033 Bram Moolenaar 2013-07-17 21:40:31 +02:00
  • 69b52456fc updated for version 7.4a.032 Problem: New regexp engine: Does not match shorter alternative. (Ingo Karkat) Solution: Do not drop a new state when the PIM info is different. v7.4a.032 Bram Moolenaar 2013-07-17 21:10:51 +02:00
  • de9149ef18 updated for version 7.4a.031 Problem: Compiler warnings. (Charles Campbell) Solution: Initialize variables even when not needed. v7.4a.031 Bram Moolenaar 2013-07-17 19:22:13 +02:00
  • 4a3aef7b28 updated for version 7.4a.030 Problem: Missing find_win_for_buf(). (toothpik) Solution: Add missing changes. v7.4a.030 Bram Moolenaar 2013-07-17 19:12:57 +02:00
  • 9e90219032 updated for version 7.4a.029 Problem: Can't build with MzScheme on Ubuntu 13.04. Solution: Add configure check for the "ffi" library. v7.4a.029 Bram Moolenaar 2013-07-17 18:58:11 +02:00
  • 706d2de9c1 updated for version 7.4a.028 Problem: Crash when spell checking in new buffer. Solution: Set the b_p_key field. (Mike Williams) v7.4a.028 Bram Moolenaar 2013-07-17 17:35:13 +02:00
  • 95064ece73 updated for version 7.4a.027 Problem: When Python adds lines to another buffer the cursor position is wrong, it might be below the last line causing ml_get errors. (Vlad Irnov) Solution: Temporarily change the current window, so that marks are corrected properly. v7.4a.027 Bram Moolenaar 2013-07-17 17:15:25 +02:00
  • 33ca6bf240 updated for version 7.4a.026 Problem: ":diffoff" does not remove folds. (Ramel) Solution: Do not restore 'foldenable' when 'foldmethod' is "manual". v7.4a.026 Bram Moolenaar 2013-07-17 13:43:39 +02:00
  • 56667a5d3e updated for version 7.4a.025 Problem: Get the press-Enter prompt even after using :redraw. Solution: Clear need_wait_return when executing :redraw. v7.4a.025 Bram Moolenaar 2013-07-17 11:54:28 +02:00
  • 6f2926692b updated for version 7.4a.024 Problem: X11 GUI: Checking icon height twice. Solution: Check height and width. (Dominique Pelle) v7.4a.024 Bram Moolenaar 2013-07-14 15:06:50 +02:00
  • 6f394f88b8 updated for version 7.4a.023 Problem: Still another superfluous parenthesis. (ZyX) Solution: Remove it. v7.4a.023 Bram Moolenaar 2013-07-14 13:41:56 +02:00
  • 91b2bdb083 updated for version 7.4a.022 Problem: Using "d2g$" does not delete the last character. (ZyX) Solution: Set the "inclusive" flag properly. v7.4a.022 Bram Moolenaar 2013-07-14 13:32:15 +02:00
  • ff52518969 updated for version 7.4a.021 Problem: Using feedkeys() doesn't always work. Solution: Omit feedkeys(). (Ken Takata) v7.4a.021 Bram Moolenaar 2013-07-14 13:02:12 +02:00
  • 3fb14bc734 updated for version 7.4a.020 Problem: Superfluous mb_ptr_adv(). Solution: Remove the call. (Dominique Pelle) v7.4a.020 Bram Moolenaar 2013-07-14 12:34:56 +02:00
  • ee31be64a3 updated for version 7.4a.019 Problem: Invalid closing parenthesis in test 62. Command truncated at double quote. Solution: Remove the parenthesis. Change double quote to ''. (ZyX) v7.4a.019 Bram Moolenaar 2013-07-14 12:21:57 +02:00
  • 690ae9c858 updated for version 7.4a.018 Problem: Compiler warning for code unreachable. (Charles Campbell) Solution: Use "while" instead of endless loop. Change break to continue. v7.4a.018 Bram Moolenaar 2013-07-13 20:58:11 +02:00
  • 2b79bfdeab updated for version 7.4a.017 Problem: When 'foldmethod' is "indent", using ">>" on a line just above a fold makes the cursor line folded. (Evan Laforge) Solution: Call foldOpenCursor(). (Christian Brabandt) v7.4a.017 Bram Moolenaar 2013-07-13 16:34:32 +02:00
  • a0aa9070be updated for version 7.4a.016 Problem: Features enabled in Makefile. Solution: Undo accidental changes. v7.4a.016 Bram Moolenaar 2013-07-13 15:39:33 +02:00
  • a3fe8fe632 updated for version 7.4a.015 Problem: No Japanese man pages. Solution: Add Japanese translations of man pages. (Ken Takata, Yukihiro Nakadaira, et al.) v7.4a.015 Bram Moolenaar 2013-07-13 15:33:20 +02:00
  • 8e46f7264c updated for version 7.4a.014 Problem: Test 86 and 89 have a problem with using a shadow dir. Solution: Adjust for the different directory structure. (James McCoy) v7.4a.014 Bram Moolenaar 2013-07-13 14:08:16 +02:00