summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-0669-162/+163
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.924v7.3.924Bram Moolenaar2013-05-0613-18/+1266
| | | | | Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
* updated for version 7.3.923v7.3.923Bram Moolenaar2013-05-043-2/+13
| | | | | Problem: Check for X11 header files fails on Solaris. Solution: Only use -Werror for gcc. (Laurent Blume)
* updated for version 7.3.922v7.3.922Bram Moolenaar2013-05-043-5/+4
| | | | | Problem: No test for what 7.3.918 fixes. Solution: Add a test. (David Bürgin)
* updated for version 7.3.921v7.3.921Bram Moolenaar2013-05-042-0/+4
| | | | | Problem: Trying to create a fontset handle when 'guifontset' is not set. Solution: Add curly braces around the code block. (Max Kirillov)
* updated for version 7.3.920v7.3.920Bram Moolenaar2013-05-042-1/+3
| | | | | Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams)
* updated for version 7.3.919v7.3.919Bram Moolenaar2013-05-042-2/+5
| | | | | Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume)
* Updated runtime files.Bram Moolenaar2013-04-243-18/+26
|
* updated for version 7.3.918v7.3.918Bram Moolenaar2013-04-242-4/+9
| | | | | Problem: Repeating an Ex command after using a Visual motion does not work. Solution: Check for an Ex command being used. (David Bürgin)
* updated for version 7.3.917v7.3.917Bram Moolenaar2013-04-244-0/+23
| | | | | | Problem: When a path ends in a backslash appending a comma has the wrong effect. Solution: Replace a trailing backslash with a slash. (Nazri Ramliy)
* updated for version 7.3.916v7.3.916Bram Moolenaar2013-04-242-17/+19
| | | | | Problem: Using freed memory when pasting with the mouse (Issue 130). Solution: Get the byte value early. (hint by Dominique Pelle)
* updated for version 7.3.915v7.3.915Bram Moolenaar2013-04-242-0/+4
| | | | | | Problem: When reading a file with encoding conversion fails at the end the next encoding in 'fencs' is not used. Solution: Retry with another encoding when possible. (Taro Muraoka)
* updated for version 7.3.914v7.3.914Bram Moolenaar2013-04-243-2/+4
| | | | | Problem: ~/.viminfo is messed up when running tests. Solution: Set the viminfo filename.
* updated for version 7.3.913v7.3.913Bram Moolenaar2013-04-242-1/+6
| | | | | Problem: Still a crash when writing viminfo. Solution: Add checks for NULL pointers. (Ron Aaron)
* updated for version 7.3.912v7.3.912Bram Moolenaar2013-04-242-0/+8
| | | | | | Problem: Typing a ":" command at the hit-enter dialog does not work if the "file changed" dialog happens next. Solution: Check for changed files before giving the hit-enter dialog.
* updated for version 7.3.911v7.3.911Bram Moolenaar2013-04-2410-14/+56
| | | | | Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
* updated for version 7.3.910v7.3.910Bram Moolenaar2013-04-243-39/+4
| | | | | Problem: Python code in #ifdef branches with only minor differences. Solution: Merge the #ifdef branches. (ZyX)
* updated for version 7.3.909v7.3.909Bram Moolenaar2013-04-244-775/+503
| | | | | | Problem: Duplicate Python code. Solution: Move more items to if_py_both.h. (ZyX) Also avoid compiler warnings for missing initializers.
* updated for version 7.3.908v7.3.908Bram Moolenaar2013-04-242-0/+4
| | | | | Problem: Possible crash when using a list in Python. Solution: Return early if the list is NULL. (ZyX)
* updated for version 7.3.907v7.3.907Bram Moolenaar2013-04-246-3/+13
| | | | | Problem: Python uses IndexError when a dict key is not found. Solution: Use KeyError instead. (ZyX)
* updated for version 7.3.906v7.3.906Bram Moolenaar2013-04-242-2/+6
| | | | | Problem: The "sleep .2" for running tests does not work on Solaris. Solution: Fall back to using "sleep 1". (Laurent Blume)
* updated for version 7.3.905v7.3.905Bram Moolenaar2013-04-152-0/+3
| | | | | Problem: Crash when writing viminfo. (Ron Aaron) Solution: Prevent freed history info to be used.
* updated for version 7.3.904v7.3.904Bram Moolenaar2013-04-152-0/+6
| | | | | Problem: Using memory freed by the garbage collector. Solution: Mark items in aucmd_win as used.
* updated for version 7.3.903v7.3.903Bram Moolenaar2013-04-152-1/+11
| | | | | Problem: Crash on exit writing viminfo. (Ron Aaron) Solution: Check for the history to be empty.
* updated for version 7.3.902v7.3.902Bram Moolenaar2013-04-152-0/+3
| | | | | Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
* updated for version 7.3.901v7.3.901Bram Moolenaar2013-04-154-4/+7
| | | | | Problem: Outdated comment, ugly condition. Solution: Update a few comments, break line.
* updated for version 7.3.900v7.3.900Bram Moolenaar2013-04-152-0/+9
| | | | | Problem: Not obvious that some mouse features are mutual-exclusive. Solution: Add a comment.
* updated for version 7.3.899v7.3.899Bram Moolenaar2013-04-152-3/+6
| | | | | Problem: #if indents are off. Solution: Fix the indents.
* updated for version 7.3.898v7.3.898Bram Moolenaar2013-04-154-30/+47
| | | | | Problem: Memory leak reported by valgrind in test 91. Solution: Only use default argument when needed.
* updated for version 7.3.897v7.3.897Bram Moolenaar2013-04-153-16/+36
| | | | | Problem: Configure doesn't always find the shared library. Solution: Change the configure script. (Ken Takata)
* updated for version 7.3.896v7.3.896Bram Moolenaar2013-04-154-10/+64
| | | | | Problem: Memory leaks in Lua interface. Solution: Fix the leaks, add tests. (Yukihiro Nakadaira)
* updated for version 7.3.895v7.3.895Bram Moolenaar2013-04-152-21/+17
| | | | | Problem: Valgrind error in test 91. (Issue 128) Solution: Pass scope name to find_var_in_ht().
* updated for version 7.3.894v7.3.894Bram Moolenaar2013-04-152-1/+3
| | | | | Problem: Using wrong RUBY_VER causing Ruby build to break. Solution: Correct the RUBY_VER value. (Yongwei Wu)
* updated for version 7.3.893v7.3.893Bram Moolenaar2013-04-157-81/+129
| | | | | | | Problem: Crash when using b:, w: or t: after closing the buffer, window or tabpage. Solution: Allocate the dictionary instead of having it part of the buffer/window/tabpage struct. (Yukihiro Nakadaira)
* updated for version 7.3.892v7.3.892Bram Moolenaar2013-04-144-13/+27
| | | | | Problem: Still mering problems for viminfo history. Solution: Do not merge lines when writing, don't write old viminfo lines.
* updated for version 7.3.891v7.3.891Bram Moolenaar2013-04-142-17/+44
| | | | | | Problem: Merging viminfo history doesn't work well. Solution: Don't stop when one type of history is empty. Don't merge history when writing viminfo.
* updated for version 7.3.890v7.3.890Bram Moolenaar2013-04-142-0/+2
| | | | | Problem: Test 79 fails on Windows. (Michael Soyka) Solution: Add comment below line causing an error.
* updated for version 7.3.889v7.3.889Bram Moolenaar2013-04-142-0/+21
| | | | | Problem: Can't build with Ruby 2.0 on a 64 bit system. Solution: Define rb_fix2int and rb_num2int. (Kohei Suzuki)
* updated for version 7.3.888v7.3.888Bram Moolenaar2013-04-122-13/+22
| | | | | | Problem: Filename completion with 'fileignorecase' does not work for multi-byte characters. Solution: Make 'fileignorecase' work properly. (Hirohito Higashi)
* updated for version 7.3.887v7.3.887Bram Moolenaar2013-04-129-7/+133
| | | | | Problem: No tests for Visual mode operators, what 7.3.879 fixes. Solution: Add a new test file. (David Bürgin)
* updated for version 7.3.886v7.3.886Bram Moolenaar2013-04-122-4/+11
| | | | | Problem: Can't build with multi-byte on Solaris 10. Solution: Add #ifdef X_HAVE_UTF8_STRING. (Laurent Blume)
* updated for version 7.3.885v7.3.885Bram Moolenaar2013-04-122-16/+2
| | | | | Problem: Double free for list and dict in Lua. (Shougo Matsu) Solution: Do not unref list and dict. (Yasuhiro Matsumoto)
* updated for version 7.3.884v7.3.884Bram Moolenaar2013-04-062-5/+7
| | | | | Problem: Compiler warning for variable shadowing another. (John Little) Solution: Rename the variable. (Christian Brabandt)
* updated for version 7.3.883v7.3.883Bram Moolenaar2013-04-062-1/+5
| | | | | Problem: Can't build with some combination of features. Solution: Adjust #ifdefs.
* updated for version 7.3.882v7.3.882Bram Moolenaar2013-04-052-0/+8
| | | | | Problem: CursorHold may trigger after receiving the termresponse. Solution: Set the did_cursorhold flag. (Hayaki Saito)
* updated for version 7.3.881v7.3.881Bram Moolenaar2013-04-054-1/+39
| | | | | Problem: Python list does not work correctly. Solution: Fix it and add a test. (Yukihiro Nakadaira)
* updated for version 7.3.880v7.3.880Bram Moolenaar2013-04-052-25/+30
| | | | | | | Problem: When writing viminfo, old history lines may replace lines written more recently by another Vim instance. Solution: Mark history entries that were read from viminfo and overwrite them when merging with the current viminfo.
* updated for version 7.3.879v7.3.879Bram Moolenaar2013-04-052-5/+13
| | | | | | Problem: When using an ex command in operator pending mode, using Esc to abort the command still executes the operator. (David Bürgin) Solution: Clear the operator when the ex command fails. (Christian Brabandt)
* updated for version 7.3.878v7.3.878Bram Moolenaar2013-04-051-0/+2
| | | | | Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
* updated for version 7.3.877v7.3.877Bram Moolenaar2013-04-034-2/+9
| | | | | Problem: Forward searching with search() is broken. Solution: Fix it and add tests. (Sung Pae)