summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.2.403v7.2.403Bram Moolenaar2010-03-192-2/+4
| | | | | Problem: Compiler warning for pointer type. (Tony Mechelynck) Solution: Move type cast to the right place.
* Updated runtime and language files.Bram Moolenaar2010-03-179-131/+137
|
* updated for version 7.2.402v7.2.402Bram Moolenaar2010-03-172-9/+14
| | | | | | | Problem: This gives a #705 error: let X = function('haslocaldir') let X = function('getcwd') Solution: Don't give E705 when the name is found in the hashtab. (Sergey Khorev)
* updated for version 7.2.401v7.2.401Bram Moolenaar2010-03-172-2/+8
| | | | | | | Problem: ":e dir<Tab>" with 'wildmode' set to "list" doesn't highlight directory names with a space. (Alexandre Provencio) Solution: Remove the backslash before checking if the name is a directory. (Dominique Pelle)
* updated for version 7.2.400v7.2.400Bram Moolenaar2010-03-172-57/+62
| | | | | | | Problem: Dynamic Ruby is not initialised properly for version 1.9.1. Ruby cannot create strings from NULL. Solution: Cleanup #ifdefs. Handle NULL like an empty string. Add ruby_init_stack. (Sergey Khorev)
* updated for version 7.2.399v7.2.399Bram Moolenaar2010-03-172-1/+5
| | | | | Problem: Cannot compile on MingW Solution: Move ifneq to separate line. (Vlad Sandrini, Dominique Pelle)
* updated for version 7.2.398v7.2.398Bram Moolenaar2010-03-172-7/+13
| | | | | Problem: When moving windows the cursor ends up in the wrong line. Solution: Set the window width and height properly. (Lech Lorens)
* updated for version 7.2.397v7.2.397Bram Moolenaar2010-03-172-9/+10
| | | | | Problem: Redundant check for w_lines_valid. Solution: Remove the if. (Lech Lorens)
* updated for version 7.2.396v7.2.396Bram Moolenaar2010-03-172-1/+3
| | | | | Problem: Get E38 errors. (Dasn) Solution: Set cursor to line 1 instead of 0. (Dominique Pelle)
* updated for version 7.2.395v7.2.395Bram Moolenaar2010-03-172-1/+3
| | | | | | Problem: In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony Mechelynck) Solution: Don't escape ? for a help command. (Sergey Khorev)
* updated for version 7.2.394v7.2.394Bram Moolenaar2010-03-102-2/+8
| | | | | Problem: .xz files are not supported. Solution: Recognize .xz files so that they can be edited.
* updated for version 7.2.393v7.2.393Bram Moolenaar2010-03-103-8/+94
| | | | | Problem: Mac: Can't build with different Xcode developer tools directory. Solution: make "Developer" directory name configurable. (Rainer Muller)
* updated for version 7.2.392v7.2.392Bram Moolenaar2010-03-105-31/+45
| | | | | Problem: Netbeans hangs reading from a socket at the maximum block size. Solution: Use select() or poll(). (Xavier de Gaye)
* updated for version 7.2.391v7.2.391Bram Moolenaar2010-03-103-9/+14
| | | | | Problem: Internal alloc(0) error when doing "CTRL-V $ c". (Martti Kuparinen) Solution: Fix computations in getvcol(). (partly by Lech Lorens)
* updated for version 7.2.390v7.2.390Bram Moolenaar2010-03-102-0/+10
| | | | | Problem: In some situations the popup menu can be displayed wrong. Solution: Remove the popup menu if the cursor moved. (Lech Lorens)
* updated for version 7.2.389v7.2.389Bram Moolenaar2010-03-104-5/+22
| | | | | Problem: synIDattr() cannot return the font. Solution: Support the "font" argument. (Christian Brabandt)
* updated for version 7.2.388v7.2.388Bram Moolenaar2010-03-102-7/+11
| | | | | Problem: Ruby with MingW still doesn't build all versions. Solution: Different approach to build file. (Sergey Khorev)
* updated for version 7.2.387v7.2.387Bram Moolenaar2010-03-102-8/+63
| | | | | Problem: Ruby with MingW still doesn't build all versions. Solution: More #ifdefs for the Ruby code. (Sergey Khorev)
* updated for version 7.2.386v7.2.386Bram Moolenaar2010-03-102-13/+2
| | | | | Problem: Focus hack for KDE 3.1 causes problems for other window managers. Solution: Remove the hack. (forwarded by Joel Bradshaw)
* updated for version 7.2.385v7.2.385Bram Moolenaar2010-03-022-8/+3
| | | | | | Problem: When in the command line window dragging status line only works for last-but-one window. (Jean Johner) Solution: Remove the code that disallows this.
* updated for version 7.2.384v7.2.384Bram Moolenaar2010-03-023-0/+6
| | | | | Problem: Vim doesn't build properly with MSVC 2010. Solution: Add the nmake version to the build file. (George Reilly)
* updated for version 7.2.383v7.2.383Bram Moolenaar2010-03-024-5/+5
| | | | | Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly)
* updated for version 7.2.382v7.2.382Bram Moolenaar2010-03-022-1/+7
| | | | | | | Problem: Accessing freed memory when closing the cmdline window when 'bufhide' is set to "wipe". Solution: Check if the buffer still exists before invoking close_buffer() (Dominique Pelle)
* Updated runtime an documentation files.Bram Moolenaar2010-03-0222-843/+8785
|
* updated for version 7.2.381v7.2.381Bram Moolenaar2010-03-025-10/+36
| | | | | Problem: No completion for :behave. Solution: Add :behave completion. Minor related fixes. (Dominique Pelle)
* updated for version 7.2.380v7.2.380Bram Moolenaar2010-03-022-3/+10
| | | | | Problem: Perl interface builds with 5.10.1 but not with 5.10.0. Solution: Change the #ifdefs. (Sergey Khorev)
* updated for version 7.2.379v7.2.379Bram Moolenaar2010-03-022-1/+6
| | | | | | Problem: 'eventignore' is set to an invalid value inside ":doau". (Antony Scriven) Solution: Don't include the leading comma when the option was empty.
* updated for version 7.2.378v7.2.378Bram Moolenaar2010-03-022-2/+7
| | | | | Problem: C function declaration indented too much. (Rui) Solution: Don't see a line containing { or } as a type. (Matt Wozniski)
* updated for version 7.2.377v7.2.377Bram Moolenaar2010-02-262-2/+3
| | | | | | Problem: Misplaced assignment. Duplicate build line for gvimext.dll. Solution: Move setting CROSS_COMPILE to before ifneq. Remove the wrong build line. (Markus Heidelberg)
* updated for version 7.2.376v7.2.376Bram Moolenaar2010-02-242-0/+8
| | | | | | Problem: ml_get error when using SiSU syntax. (Nathan Thomas) Solution: If the match ends below the last line move it to the end of the last line.
* updated for version 7.2.375v7.2.375Bram Moolenaar2010-02-242-1/+6
| | | | | | Problem: ml_get errors when using ":bprevious" in a BufEnter autocmd. (Dominique Pelle) Solution: Clear w_valid when entering another buffer.
* updated for version 7.2.374v7.2.374Bram Moolenaar2010-02-243-8/+79
| | | | | Problem: Ruby eval() doesn't understand Vim types. Solution: Add the vim_to_ruby() function. (George Gensure)
* updated for version 7.2.373v7.2.373Bram Moolenaar2010-02-242-1/+3
| | | | | Problem: Gcc 4.5 adds more error messages. (Chris Indy) Solution: Update default 'errorformat'.
* updated for version 7.2.372v7.2.372Bram Moolenaar2010-02-246-18/+23
| | | | | Problem: Cross-compiling GvimExt and xxd doesn't work. Solution: Change the build files. (Markus Heidelberg)
* updated for version 7.2.371v7.2.371Bram Moolenaar2010-02-248-9/+149
| | | | | Problem: Build problems on Tandem NonStop. Solution: A few changes to #ifdefs (Joachim Schmitz)
* updated for version 7.2.370v7.2.370Bram Moolenaar2010-02-246-21/+29
| | | | | Problem: A redraw may cause folds to be closed. Solution: Revert part of the previous patch. Add a test. (Lech Lorens)
* updated for version 7.2.369v7.2.369Bram Moolenaar2010-02-242-1/+3
| | | | | Problem: Error message is not easy to understand. Solution: Add quotes. (SungHyun Nam)
* updated for version 7.2.368v7.2.368Bram Moolenaar2010-02-182-1/+3
| | | | | Problem: Ruby interface: Appending line doesn't work. (Michael Henry) Solution: Reverse check for NULL line. (James Vega)
* updated for version 7.2.367v7.2.367Bram Moolenaar2010-02-172-5/+7
| | | | | Problem: "xxd -r -p" doesn't work as documented. Solution: Skip white space. (James Vega)
* updated for version 7.2.366v7.2.366Bram Moolenaar2010-02-172-6/+17
| | | | | Problem: CTRL-B doesn't go back to the first line of the buffer. Solution: Avoid an overflow when adding MAXCOL.
* updated for version 7.2.365v7.2.365Bram Moolenaar2010-02-172-2/+4
| | | | | | Problem: MS-Windows with MingW: "File->Save As" does not work. (John Marriott) Solution: Correctly fill in structure size. (Andy Kittner)
* updated for version 7.2.364v7.2.364Bram Moolenaar2010-02-172-4/+6
| | | | | Problem: Can't build gvimext.dll on Win 7 x64 using MinGW (John Marriott) Solution: Check if _MSC_VER is defined. (Andy Kittner)
* updated for version 7.2.363v7.2.363Bram Moolenaar2010-02-172-0/+11
| | | | | Problem: Can't dynamically load Perl 5.10. Solution: Add the function Perl_croak_xs_usage. (Sergey Khorev)
* updated for version 7.2.362v7.2.362Bram Moolenaar2010-02-173-7/+25
| | | | | | Problem: Win64: Vim doesn't work when cross-compiled with MingW libraries. Solution: Instead of handling WM_NCCREATE, create wide text area window class if the parent window iw side. (Sergey Khorev)
* updated for version 7.2.361v7.2.361Bram Moolenaar2010-02-175-32/+197
| | | | | Problem: Ruby 1.9 is not supported. Solution: Add Ruby 1.9 support. (Msaki Suketa)
* updated for version 7.2.360v7.2.360Bram Moolenaar2010-02-172-0/+16
| | | | | Problem: Ruby on MS-Windows: can't use sockets. Solution: Call NtInitialize() during initialization. (Ariya Mizutani)
* updated for version 7.2.359v7.2.359Bram Moolenaar2010-02-112-0/+11
| | | | | | Problem: Crash when using the Netbeans join command. Solution: Make sure the ml_flush_line() function is not used recursively. (Xavier de Gaye)
* updated for version 7.2.358v7.2.358Bram Moolenaar2010-02-113-1/+9
| | | | | Problem: Compiler warnings on VMS. (Zoltan Arpadffy) Solution: Pass array itself instead its address. Return a value.
* updated for version 7.2.357v7.2.357Bram Moolenaar2010-02-112-0/+6
| | | | | | Problem: When changing 'fileformat' from/to "mac" and there is a CR in the text the display is wrong. Solution: Redraw the text when 'fileformat' is changed. (Ben Schmidt)
* Updated runtime files.Bram Moolenaar2010-02-1113-60/+61
|