summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2010-12-24updated for version 7.3.088Bram Moolenaar
Problem: Ruby can't load Gems sometimes, may cause a crash. Solution: Undefine off_t. Use ruby_process_options(). (Yasuhiro Matsumoto)
2010-12-17updated for version 7.3.087Bram Moolenaar
Problem: EINTR is not always defined. Solution: Include errno.h in vim.h.
2010-12-17updated for version 7.3.086Bram Moolenaar
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.
2010-12-17updated for version 7.3.085Bram Moolenaar
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
2010-12-17updated for version 7.3.084Bram Moolenaar
Problem: When splitting the window, the new one scrolls with the cursor at the top. Solution: Compute w_fraction before setting the new height.
2010-12-17updated for version 7.3.083Bram Moolenaar
Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr().
2010-12-17updated for version 7.3.082Bram Moolenaar
Problem: Leaking file descriptor when hostname doesn't exist. Solution: Remove old debugging lines.
2010-12-10Update runtime files.Bram Moolenaar
2010-12-08updated for version 7.3.081Bram Moolenaar
Problem: Non-printable characters in 'statusline' cause trouble. (ZyX) Solution: Use transstr(). (partly by Caio Ariede)
2010-12-08updated for version 7.3.080Bram Moolenaar
Problem: Spell doesn't work on VMS. Solution: Use different file names. (Zoltan Bartos, Zoltan Arpadffy)
2010-12-08updated for version 7.3.079Bram Moolenaar
Problem: Duplicate lines in makefile. Solution: Remove the lines. (Hong Xu)
2010-12-08updated for version 7.3.078Bram Moolenaar
Problem: Warning for unused variable. Solution: Adjuste #ifdefs.
2010-12-08updated for version 7.3.077Bram Moolenaar
Problem: When updating crypt of swapfile fails there is no error message. (Carlo Teubner) Solution: Add the error message.
2010-12-08updated for version 7.3.076Bram Moolenaar
Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
2010-12-02updated for version 7.3.075Bram Moolenaar
Problem: Missing part of 'wildignorecase' Solution: Also adjust expand()
2010-12-02updated for version 7.3.074Bram Moolenaar
Problem: Can't use the "+ register like "* for yank and put. Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov)
2010-12-02updated for version 7.3.073Bram Moolenaar
Problem: Double free memory when netbeans command follows DETACH. Solution: Only free the node when owned. (Xavier de Gaye)
2010-12-02updated for version 7.3.072Bram Moolenaar
Problem: Can't complete file names while ignoring case. Solution: Add 'wildignorecase'.
2010-12-02updated for version 7.3.071Bram Moolenaar
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.
2010-12-02updated for version 7.3.070Bram Moolenaar
Problem: Can set environment variables in the sandbox, could be abused. Solution: Disallow it.
2010-11-24updated for version 7.3.069Bram Moolenaar
Problem: GTK: pressing Enter in inputdialog() doesn't work like clicking OK as documented. Solution: call gtk_entry_set_activates_default(). (Britton Kerin)
2010-11-24updated for version 7.3.068Bram Moolenaar
Problem: Using freed memory when doing ":saveas" and an autocommand sets 'autochdir'. (Kevin Klement) Solution: Get the value of fname again after executing autocommands.
2010-11-24updated for version 7.3.067Bram Moolenaar
Problem: Ruby: Init_prelude is not always available. Solution: Remove use of Init_prelude. (Yasuhiro Matsumoto)
2010-11-24updated for version 7.3.066Bram Moolenaar
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.
2010-11-24updated for version 7.3.065Bram Moolenaar
Problem: Can't get current line number in a source file. Solution: Add the <slnum> item, similar to <sfile>.
2010-11-24updated for version 7.3.064Bram Moolenaar
Problem: Win32: ":dis +" shows nothing, but "+p does insert text. Solution: Display the * register, since that's what will be inserted. (Christian Brabandt)
2010-11-24updated for version 7.3.063Bram Moolenaar
Problem: Win32: Running a filter command makes Vim lose focus. Solution: Use SW_SHOWMINNOACTIVE instead of SW_SHOWMINIMIZED. (Hong Xu)
2010-11-16Updated runtime files.Bram Moolenaar
2010-11-16updated for version 7.3.062Bram Moolenaar
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)
2010-11-16updated for version 7.3.061Bram Moolenaar
Problem: Remote ":drop" does not respect 'autochdir'. (Peter Odding) Solution: Don't restore the directory when 'autochdir' is set. (Benjamin Fritz)
2010-11-16updated for version 7.3.060Bram Moolenaar
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)
2010-11-16updated for version 7.3.059Bram Moolenaar
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)
2010-11-16updated for version 7.3.058Bram Moolenaar
Problem: Error "code converter not found" when loading Ruby script. Solution: Load Gem module. (Yasuhiro Matsumoto)
2010-11-16updated for version 7.3.057Bram Moolenaar
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.
2010-11-16updated for version 7.3.056Bram Moolenaar
Problem: "getline" argument in do_cmdline() shadows global. Solution: Rename the argument. Files: src/ex_docmd.c
2010-11-10updated for version 7.3.055Bram Moolenaar
Problem: Recursively nested lists and dictionaries cause a near-endless loop when comparing them with a copy. (ZyX) Solution: Limit recursiveness in a way that non-recursive structures can still be nested very deep. Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
2010-11-10updated for version 7.3.054Bram Moolenaar
Problem: Can define a user command for :Print, but it doesn't work. (Aaron Thoma) Solution: Let user command :Print overrule the builtin command (Christian Brabandt) Disallow :X and :Next as a user defined command.
2010-11-10updated for version 7.3.053Bram Moolenaar
Problem: complete() function doesn't reset complete direction. Can't use an empty string in the list of matches. Solution: Set compl_direction to FORWARD. Add "empty" key to allow empty words. (Kikuchan)
2010-11-10updated for version 7.3.052Bram Moolenaar
Problem: When 'completefunc' opens a new window all kinds of errors follow. (Xavier Deguillard) Solution: When 'completefunc' goes to another window or buffer and when it deletes text abort completion. Add a test for 'completefunc'.
2010-11-10updated for version 7.3.051Bram Moolenaar
Problem: Crash when /home/mool/bin:/usr/local/sbin:/usr/local/bin:/home/mool/java/jdk/bin:/bin:/sbin:/usr/bin:/usr/games:/usr/sbin:/usr/X11R6/bin:/usr/local/linux-jdk1.3.1/bin:/usr/local/lib/python2.2/Tools/idle is empty. Solution: Check for vim_getenv() returning NULL. (Yasuhiro Matsumoto)
2010-11-03updated for version 7.3.050Bram Moolenaar
Problem: The link script is clumsy. Solution: Use the --as-needed linker option if available. (Kirill A. Shutemov)
2010-11-03updated for version 7.3.049Bram Moolenaar
Problem: PLT has rebranded their Scheme to Racket. Solution: Add support for Racket 5.x. (Sergey Khorev)
2010-11-03updated for version 7.3.048Bram Moolenaar
Problem: ":earlier 1f" doesn't work after loading undo file. Solution: Set b_u_save_nr_cur when loading an undo file. (Christian Brabandt) Fix only showing time in ":undolist"
2010-10-27updated for version 7.3.047Bram Moolenaar
Problem: Missing makefile updates for test 75. Solution: Update the makefiles.
2010-10-27Updated runtile files.Bram Moolenaar
2010-10-27updated for version 7.3.046Bram Moolenaar
Problem: Can't build Ruby on MS-Windows. Solution: Add #ifdef, don't use WIN3264 before including vim.h.
2010-10-27updated for version 7.3.045Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Initialize the variable always.
2010-10-27updated for version 7.3.044Bram Moolenaar
Problem: The preview window opened by the popup menu is larger than specified with 'previewheight'. (Benjamin Haskell) Solution: Use 'previewheight' if it's set and smaller.
2010-10-27updated for version 7.3.043Bram Moolenaar
Problem: Can't load Ruby dynamically on Unix. Solution: Adjust the configure script. (James Vega)
2010-10-27updated for version 7.3.042Bram Moolenaar
Problem: No spell highlighting when re-using an empty buffer. Solution: Clear the spell checking info only when clearing the options for a buffer. (James Vega)