summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.102v7.3.102Bram Moolenaar2011-01-1723-28/+46
| | | | | | | | Problem: When using ":make", typing the next command and then getting the "reload" prompt the next command is (partly) eaten by the reload prompt. Solution: Accept ':' as a special character at the reload prompt to accept the default choice and execute the command.
* updated for version 7.3.101v7.3.101Bram Moolenaar2011-01-173-6/+7
| | | | | | Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas)
* updated for version 7.3.100v7.3.100Bram Moolenaar2011-01-172-1/+3
| | | | | Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE.
* Updated runtime files.Bram Moolenaar2011-01-0818-166/+332
|
* updated for version 7.3.099v7.3.099Bram Moolenaar2011-01-082-1/+4
| | | | | | Problem: Crash when splitting a window with zero height. (Yukihiro Nakadaira) Solution: Don't set the fraction in a window with zero height.
* updated for version 7.3.098v7.3.098Bram Moolenaar2011-01-042-4/+6
| | | | | | Problem: Function that ignores error still causes called_emsg to be set. E.g. when expand() fails the status line is disabled. Solution: Move check for emsg_not_now() up. (James Vega)
* updated for version 7.3.097v7.3.097Bram Moolenaar2011-01-042-0/+11
| | | | | | Problem: Using ":call" inside "if 0" does not see that a function returns a Dict and gives error for "." as string concatenation. Solution: Use eval0() to skip over the expression. (Yasuhiro Matsumoto)
* updated for version 7.3.096v7.3.096Bram Moolenaar2011-01-042-8/+10
| | | | | | Problem: "gvim -nb" is not interruptable. Leaking file descriptor on netbeans connection error. Solution: Check for CTRL-C typed. Free file descriptor. (Xavier de Gaye)
* updated for version 7.3.095v7.3.095Bram Moolenaar2011-01-042-3/+5
| | | | | Problem: Win32: In Chinese tear-off menu doesn't work. (Weasley) Solution: Use menu_name_equal(). (Alex Jakushev)
* updated for version 7.3.094v7.3.094Bram Moolenaar2010-12-302-3/+4
| | | | | Problem: Using abs() requires type cast to int. Solution: Use labs() so that the value remains long. (Hong Xu)
* updated for version 7.3.093v7.3.093Bram Moolenaar2010-12-303-7/+35
| | | | | Problem: New DLL dependencies in MingW with gcc 4.5.0. Solution: Add STATIC_STDCPLUS, LDFLAGS and split up WINDRES. (Guopeng Wen)
* updated for version 7.3.092v7.3.092Bram Moolenaar2010-12-302-4/+9
| | | | | Problem: Resizing the window when exiting. Solution: Don't resize when exiting.
* updated for version 7.3.091v7.3.091Bram Moolenaar2010-12-305-19/+34
| | | | | | Problem: "vim -w foo" writes special key codes for removed escape sequences. (Josh Triplett) Solution: Don't write K_IGNORE codes.
* updated for version 7.3.090v7.3.090Bram Moolenaar2010-12-302-2/+4
| | | | | Problem: Wrong help text for Cscope. Solution: Adjust the help text for "t". (Dominique Pelle)
* updated for version 7.3.089v7.3.089Bram Moolenaar2010-12-242-1/+3
| | | | | Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.088v7.3.088Bram Moolenaar2010-12-242-16/+16
| | | | | Problem: Ruby can't load Gems sometimes, may cause a crash. Solution: Undefine off_t. Use ruby_process_options(). (Yasuhiro Matsumoto)
* updated for version 7.3.087v7.3.087Bram Moolenaar2010-12-1710-12/+7
| | | | | Problem: EINTR is not always defined. Solution: Include errno.h in vim.h.
* updated for version 7.3.086v7.3.086Bram Moolenaar2010-12-172-10/+35
| | | | | | | Problem: When using a mapping with an expression and there was no count, v:count has the value of the previous command. (ZyX) Solution: Also set v:count and v:count1 before getting the character that could be a command or a count.
* updated for version 7.3.085v7.3.085Bram Moolenaar2010-12-1719-56/+8
| | | | | Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
* updated for version 7.3.084v7.3.084Bram Moolenaar2010-12-172-4/+24
| | | | | | Problem: When splitting the window, the new one scrolls with the cursor at the top. Solution: Compute w_fraction before setting the new height.
* updated for version 7.3.083v7.3.083Bram Moolenaar2010-12-178-23/+76
| | | | | Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr().
* updated for version 7.3.082v7.3.082Bram Moolenaar2010-12-172-6/+2
| | | | | Problem: Leaking file descriptor when hostname doesn't exist. Solution: Remove old debugging lines.
* Update runtime files.Bram Moolenaar2010-12-1026-245/+417
|
* updated for version 7.3.081v7.3.081Bram Moolenaar2010-12-082-3/+14
| | | | | Problem: Non-printable characters in 'statusline' cause trouble. (ZyX) Solution: Use transstr(). (partly by Caio Ariede)
* updated for version 7.3.080v7.3.080Bram Moolenaar2010-12-082-12/+39
| | | | | Problem: Spell doesn't work on VMS. Solution: Use different file names. (Zoltan Bartos, Zoltan Arpadffy)
* updated for version 7.3.079v7.3.079Bram Moolenaar2010-12-082-3/+2
| | | | | Problem: Duplicate lines in makefile. Solution: Remove the lines. (Hong Xu)
* updated for version 7.3.078v7.3.078Bram Moolenaar2010-12-082-0/+6
| | | | | Problem: Warning for unused variable. Solution: Adjuste #ifdefs.
* updated for version 7.3.077v7.3.077Bram Moolenaar2010-12-082-5/+10
| | | | | | Problem: When updating crypt of swapfile fails there is no error message. (Carlo Teubner) Solution: Add the error message.
* updated for version 7.3.076v7.3.076Bram Moolenaar2010-12-086-17/+13
| | | | | Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
* updated for version 7.3.075v7.3.075Bram Moolenaar2010-12-022-6/+12
| | | | | Problem: Missing part of 'wildignorecase' Solution: Also adjust expand()
* updated for version 7.3.074v7.3.074Bram Moolenaar2010-12-026-9/+45
| | | | | Problem: Can't use the "+ register like "* for yank and put. Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov)
* updated for version 7.3.073v7.3.073Bram Moolenaar2010-12-022-2/+10
| | | | | Problem: Double free memory when netbeans command follows DETACH. Solution: Only free the node when owned. (Xavier de Gaye)
* updated for version 7.3.072v7.3.072Bram Moolenaar2010-12-028-10/+45
| | | | | Problem: Can't complete file names while ignoring case. Solution: Add 'wildignorecase'.
* updated for version 7.3.071v7.3.071Bram Moolenaar2010-12-023-0/+6
| | | | | | Problem: Editing a file in a window that's in diff mode resets 'diff' but not cursor binding. Solution: Reset cursor binding in two more places.
* updated for version 7.3.070v7.3.070Bram Moolenaar2010-12-022-1/+3
| | | | | Problem: Can set environment variables in the sandbox, could be abused. Solution: Disallow it.
* updated for version 7.3.069v7.3.069Bram Moolenaar2010-11-242-0/+5
| | | | | | Problem: GTK: pressing Enter in inputdialog() doesn't work like clicking OK as documented. Solution: call gtk_entry_set_activates_default(). (Britton Kerin)
* updated for version 7.3.068v7.3.068Bram Moolenaar2010-11-242-0/+6
| | | | | | Problem: Using freed memory when doing ":saveas" and an autocommand sets 'autochdir'. (Kevin Klement) Solution: Get the value of fname again after executing autocommands.
* updated for version 7.3.067v7.3.067Bram Moolenaar2010-11-242-3/+2
| | | | | Problem: Ruby: Init_prelude is not always available. Solution: Remove use of Init_prelude. (Yasuhiro Matsumoto)
* updated for version 7.3.066v7.3.066Bram Moolenaar2010-11-242-3/+10
| | | | | | Problem: Crash when changing to another window while in a :vimgrep command. (Christian Brabandt) Solution: When wiping out the dummy before, remove it from aucmd_win.
* updated for version 7.3.065v7.3.065Bram Moolenaar2010-11-242-7/+22
| | | | | Problem: Can't get current line number in a source file. Solution: Add the <slnum> item, similar to <sfile>.
* updated for version 7.3.064v7.3.064Bram Moolenaar2010-11-243-1/+9
| | | | | | Problem: Win32: ":dis +" shows nothing, but "+p does insert text. Solution: Display the * register, since that's what will be inserted. (Christian Brabandt)
* updated for version 7.3.063v7.3.063Bram Moolenaar2010-11-242-1/+4
| | | | | Problem: Win32: Running a filter command makes Vim lose focus. Solution: Use SW_SHOWMINNOACTIVE instead of SW_SHOWMINIMIZED. (Hong Xu)
* Updated runtime files.Bram Moolenaar2010-11-1625-209/+691
|
* updated for version 7.3.062v7.3.062Bram Moolenaar2010-11-165-23/+159
| | | | | | | Problem: Python doesn't work properly when installed in another directory than expected. Solution: Figure out home directory in configure and use Py_SetPythonHome() at runtime. (Roland Puntaier)
* updated for version 7.3.061v7.3.061Bram Moolenaar2010-11-162-4/+15
| | | | | | Problem: Remote ":drop" does not respect 'autochdir'. (Peter Odding) Solution: Don't restore the directory when 'autochdir' is set. (Benjamin Fritz)
* updated for version 7.3.060v7.3.060Bram Moolenaar2010-11-162-20/+47
| | | | | | Problem: Netbeans: crash when socket is disconnected unexpectedly. Solution: Don't cleanup when a read fails, put a message in the queue and disconnect later. (Xavier de Gaye)
* updated for version 7.3.059v7.3.059Bram Moolenaar2010-11-163-25/+10
| | | | | | | Problem: Netbeans: Problem with recursively handling messages for Athena and Motif. Solution: Call netbeans_parse_messages() in the main loop, like it's done for GTK. (Xavier de Gaye)
* updated for version 7.3.058v7.3.058Bram Moolenaar2010-11-162-12/+24
| | | | | Problem: Error "code converter not found" when loading Ruby script. Solution: Load Gem module. (Yasuhiro Matsumoto)
* updated for version 7.3.057v7.3.057Bram Moolenaar2010-11-162-1/+7
| | | | | | Problem: Segfault with command line abbreviation. (Randy Morris) Solution: Don't retrigger the abbreviation when abandoning the command line. Continue editing the command line after the error.
* updated for version 7.3.056v7.3.056Bram Moolenaar2010-11-164-40/+93
| | | | | | Problem: "getline" argument in do_cmdline() shadows global. Solution: Rename the argument. Files: src/ex_docmd.c