summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-12-05updated for version 7.3.745Bram Moolenaar
Problem: Automatically setting 'ttymouse' doesn't work. Solution: Reset the "option was set" flag when using the default.
2012-11-29updated for version 7.3.744Bram Moolenaar
Problem: 64 bit compiler warning. Solution: Add type cast. (Mike Williams)
2012-11-28updated for version 7.3.743Bram Moolenaar
Problem: Tiny build still fails. Solution: Add #else in the right place.
2012-11-28updated for version 7.3.742Bram Moolenaar
Problem: Leaking memory when :vimgrep restores the directory. Solution: Free the allocated memory. (Christian Brabandt)
2012-11-28updated for version 7.3.741Bram Moolenaar
Problem: Tiny build fails. Solution: Move #ifdef. (Ike Devolder)
2012-11-28updated for version 7.3.740Bram Moolenaar
Problem: IOC tool complains about undefined behavior for int. Solution: Change to unsigned int. (Dominique Pelle)
2012-11-28updated for version 7.3.739Bram Moolenaar
Problem: Computing number of lines may have an integer overflow. Solution: Check for MAXCOL explicitly. (Dominique Pelle)
2012-11-28updated for version 7.3.738Bram Moolenaar
Problem: Unused function argument. Solution: Remove it. (Christian Brabandt)
2012-11-28updated for version 7.3.737Bram Moolenaar
Problem: When using do_cmdline() recursively did_endif is not reset, causing messages to be overwritten. Solution: Reset did_endif. (Christian Brabandt)
2012-11-28updated for version 7.3.736Bram Moolenaar
Problem: File name completion in input() escapes white space. (Frederic Hardy) Solution: Do not escape white space. (Christian Brabandt)
2012-11-28updated for version 7.3.735Bram Moolenaar
Problem: Cannot build Ruby 1.9 with MingW or Cygwin. Solution: Add another include directory. (Ken Takata)
2012-11-28updated for version 7.3.734Bram Moolenaar
Problem: Cannot put help files in a sub-directory. Solution: Make :helptags work for sub-directories. (Charles Campbell)
2012-11-28updated for version 7.3.733Bram Moolenaar
Problem: Tests fail when including MzScheme. Solution: Change #ifdefs for vim_main2().
2012-11-28updated for version 7.3.732Bram Moolenaar
Problem: Compiler warnings for function arguments. Solution: Use inteptr_t instead of long.
2012-11-28updated for version 7.3.731Bram Moolenaar
Problem: Py3Init_vim() is exported uneccessarily. Solution: Make it static. (Ken Takata)
2012-11-28updated for version 7.3.730Bram Moolenaar
Problem: Crash in PHP file when using syntastic. (Ike Devolder) Solution: Avoid using NULL pointer. (Christian Brabandt)
2012-11-24updated for version 7.3.729Bram Moolenaar
Problem: Building with Ruby fails on some systems. Solution: Remove "static" and add #ifndef PROTO. (Ken Takata)
2012-11-23updated for version 7.3.728Bram Moolenaar
Problem: Cannot compile with MzScheme interface on Ubuntu 12.10. Solution: Find the collects directory under /usr/share.
2012-11-23updated for version 7.3.727Bram Moolenaar
Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
2012-11-23updated for version 7.3.726Bram Moolenaar
Problem: Typos and duplicate info in README. Solution: Fix the text.
2012-11-20updated for version 7.3.725Bram Moolenaar
Problem: :aboveleft and :belowright have no effect on :copen. Solution: Check for cmdmod.split. (Christian Brabandt)
2012-11-20updated for version 7.3.724Bram Moolenaar
Problem: Building with Ruby and Tcl on MS-Windows does not work. Solution: Remove Ruby and Tcl from the big MS-Windows build.
2012-11-20updated for version 7.3.723Bram Moolenaar
Problem: Various tiny problems. Solution: Various tiny fixes.
2012-11-20updated for version 7.3.722Bram Moolenaar
Problem: Perl flags may contain "-g", which breaks "make proto". Solution: Filter out the "-g" flag for cproto. (Ken Takata)
2012-11-20updated for version 7.3.721Bram Moolenaar
Problem: Ruby interface defines local functions globally. Solution: Make the functions static.
2012-11-20updated for version 7.3.720Bram Moolenaar
Problem: Proto files are outdated. Solution: Update the newly generated proto files.
2012-11-20updated for version 7.3.719Bram Moolenaar
Problem: Cannot run new version of cproto, it fails on missing include files. Solution: Add lots of #ifndef PROTO
2012-11-20updated for version 7.3.718Bram Moolenaar
Problem: When re-using the current buffer the buffer-local options stay. Solution: Re-initialize the buffer-local options. (Christian Brabandt)
2012-11-20updated for version 7.3.717Bram Moolenaar
Problem: When changing the font size, only MS-Windows limits the window size. Solution: Also limit the window size on other systems. (Roland Puntaier)
2012-11-20updated for version 7.3.716Bram Moolenaar
Problem: Error on exit when using Python 3. Solution: Remove PythonIO_Fini(). (Roland Puntaier)
2012-11-15Updated runtime files.Bram Moolenaar
2012-11-14updated for version 7.3.715Bram Moolenaar
Problem: Crash when calling setloclist() in BufUnload autocmd. (Marcin Szamotulski) Solution: Set w_llist to NULL when it was freed. Also add a test. (Christian Brabandt)
2012-11-14updated for version 7.3.714Bram Moolenaar
Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and :setglobal cannot. (Michael Henry) Solution: Fix the flags for :setlocal and :setglobal. (Christian Brabandt)
2012-11-14updated for version 7.3.713Bram Moolenaar
Problem: printf() can only align to bytes, not characters. Solution: Add the "S" item. (Christian Brabandt)
2012-10-23updated for version 7.3.712Bram Moolenaar
Problem: Nmake from VS2010 SP1 is not recognized. Solution: Add the version number. (Ken Takata)
2012-10-23updated for version 7.3.711Bram Moolenaar
Problem: vim.current.buffer is not available. (lilydjwg) Solution: Use py3_PyUnicode_AsUTF8 instead of py3_PyUnicode_AsUTF8String. (Ken Takata)
2012-10-23updated for version 7.3.710Bram Moolenaar
Problem: Patch 7.3.704 breaks "fn". Solution: Add check for ca.cmdchar. (Christian Brabandt)
2012-10-21updated for version 7.3.709Bram Moolenaar
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
2012-10-21updated for version 7.3.708Bram Moolenaar
Problem: Filler lines above the first line may be hidden when opening Vim. Solution: Change how topfill is computed. (Christian Brabandt)
2012-10-21updated for version 7.3.707Bram Moolenaar
Problem: Problems loading a library for a file name with non-latin characters. Solution: Use wide system functions when possible. (Ken Takata)
2012-10-21updated for version 7.3.706Bram Moolenaar
Problem: Can't build Motif version. Solution: Fix wrongly named variable. (Ike Devolder)
2012-10-21updated for version 7.3.705Bram Moolenaar
Problem: Mouse features are not sorted properly. (Tony Mechelynck) Solution: Put the mouse features in alphabetical order.
2012-10-21updated for version 7.3.704Bram Moolenaar
Problem: Repeating "cgn" does not always work correctly. Solution: Also fetch the operator character. (Christian Brabandt)
2012-10-21updated for version 7.3.703Bram Moolenaar
Problem: When 'undofile' is reset the hash is computed unnecessarily. Solution: Only compute the hash when the option was set. (Christian Brabandt)
2012-10-21updated for version 7.3.702Bram Moolenaar
Problem: Nmake from VS6 service pack 6 is not recognized. Solution: Detect the version number. (Jiri Sedlak)
2012-10-21updated for version 7.3.701Bram Moolenaar
Problem: MS-Windows: Crash with stack overflow when setting 'encoding'. Solution: Handle that loading the iconv library may be called recursively. (Jiri Sedlak)
2012-10-21updated for version 7.3.700Bram Moolenaar
Problem: Cannot detect URXVT and SGR mouse support. Solution: add +mouse_urxvt and +mouse_sgr. (Hayaki Saito)
2012-10-21updated for version 7.3.699Bram Moolenaar
Problem: When 'ttymouse' is set to "sgr" manually, it is overruled by automatic detection. Solution: Do not use automatic detection when 'ttymouse' was set manually. (Hayaki Saito)
2012-10-21updated for version 7.3.698Bram Moolenaar
Problem: Python 3 does not preserve state beween commands. Solution: Preserve the state. (Paul Ollis)
2012-10-21updated for version 7.3.697Bram Moolenaar
Problem: Leaking resources when setting GUI font. Solution: Free the font. (Ken Takata)