summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.193v7.3.193Bram Moolenaar2011-05-193-1/+9
| | | | | | | Problem: In the command line window ":close" doesn't work properly. (Tony Mechelynck) Solution: Use Ctrl_C instead of K_IGNORE for cmdwin_result. (Jean-Rene David)
* updated for version 7.3.192v7.3.192Bram Moolenaar2011-05-192-1/+11
| | | | | | Problem: Ex command ":s/ \?/ /g" splits multi-byte characters into bytes. (Dominique Pelle) Solution: Advance over whole character instead of one byte.
* Updated message translations.Bram Moolenaar2011-05-1933-590/+0
|
* updated for version 7.3.191v7.3.191Bram Moolenaar2011-05-1913-220/+10
| | | | | | Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
* Updated runtime files.Bram Moolenaar2011-05-1912-95/+718
|
* updated for version 7.3.190v7.3.190Bram Moolenaar2011-05-192-0/+5
| | | | | | Problem: When there is a "containedin" syntax argument highlighting may be wrong. (Radek) Solution: Reset current_next_list. (Ben Schmidt)
* updated for version 7.3.189v7.3.189Bram Moolenaar2011-05-102-0/+5
| | | | | Problem: Can't build without +clipboard feature. (Christian Ebert) Solution: Add the missing #ifdef.
* updated for version 7.3.188v7.3.188Bram Moolenaar2011-05-104-121/+2
| | | | | Problem: More RISC OS files to remove. Solution: Remove them. Update the file list.
* Updated runtime files.Bram Moolenaar2011-05-1015-249/+514
|
* Remove the deleted RISC OS files.Bram Moolenaar2011-05-104-5048/+0
|
* updated for version 7.3.187v7.3.187Bram Moolenaar2011-05-1022-634/+43
| | | | | Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
* updated for version 7.3.186v7.3.186Bram Moolenaar2011-05-102-1/+9
| | | | | | Problem: When 'clipboard' contains "unnamed" or "unnamedplus" the value of v:register is wrong for operators without a specific register. Solution: Adjust the register according to 'clipboard'. (Ingo Karkat)
* updated for version 7.3.185v7.3.185Bram Moolenaar2011-05-102-4/+9
| | | | | | Problem: ":windo g/pattern/q" closes windows and reports "N more lines". (Tim Chase) Solution: Remember what buffer ":global" started in. (Jean-Rene David)
* updated for version 7.3.184v7.3.184Bram Moolenaar2011-05-102-3/+5
| | | | | Problem: Static code analysis errors in riscOS. Solution: Make buffer size bigger. (Dominique Pelle)
* updated for version 7.3.183v7.3.183Bram Moolenaar2011-05-103-6/+12
| | | | | Problem: When Exuberant ctags binary is exuberant-ctags it's not found. Solution: Add configure check for exuberant-ctags.
* updated for version 7.3.182v7.3.182Bram Moolenaar2011-05-102-1/+3
| | | | | Problem: Compiler warning for uninitialized variable. Solution: Add dummy initializer.
* updated for version 7.3.181v7.3.181Bram Moolenaar2011-05-102-9/+22
| | | | | | Problem: When repeating the insert of CTRL-V or a digraph the display may not be updated correctly. Solution: Only call edit_unputchar() after edit_putchar(). (Lech Lorens)
* updated for version 7.3.180v7.3.180Bram Moolenaar2011-05-104-36/+84
| | | | | | | Problem: When both a middle part of 'comments' matches and an end part, the middle part was used errornously. Solution: After finding the middle part match continue looking for a better end part match. (partly by Lech Lorens)
* updated for version 7.3.179v7.3.179Bram Moolenaar2011-05-104-1/+27
| | | | | Problem: C-indent doesn't handle colon in string correctly. Solution: Skip the string. (Lech Lorens)
* updated for version 7.3.178v7.3.178Bram Moolenaar2011-05-104-4/+47
| | | | | Problem: C-indent doesn't handle code right after { correctly. Solution: Fix detecting unterminated line. (Lech Lorens)
* updated for version 7.3.177v7.3.177Bram Moolenaar2011-05-054-1/+28
| | | | | | Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is "utf-8". Solution: Convert to utf-16. (Yukihiro Nakadaira)
* updated for version 7.3.176v7.3.176Bram Moolenaar2011-05-053-27/+23
| | | | | Problem: Ruby linking doesn't work properly on Mac OS X. Solution: Fix the configure check for Ruby. (Bjorn Winckler)
* updated for version 7.3.175v7.3.175Bram Moolenaar2011-05-052-0/+5
| | | | | | | | Problem: When 'colorcolumn' is set locally to a window, ":new" opens a window with the same highlighting but 'colorcolumn' is empty. (Tyru) Solution: Call check_colorcolumn() after clearing and copying options. (Christian Brabandt)
* updated for version 7.3.174v7.3.174Bram Moolenaar2011-05-053-4/+10
| | | | | Problem: When Exuberant ctags binary is exctags it's not found. Solution: Add configure check for exctags. (Hong Xu)
* updated for version 7.3.173v7.3.173Bram Moolenaar2011-05-052-2/+5
| | | | | | Problem: After using setqflist() to make the quickfix list empty ":cwindow" may open the window anyway. Also after ":vimgrep". Solution: Correctly check whether the list is empty. (Ingo Karkat)
* updated for version 7.3.172v7.3.172Bram Moolenaar2011-05-056-20/+59
| | | | | | | Problem: MS-Windows: rename() might delete the file if the name differs but it's actually the same file. Solution: Use the file handle to check if it's the same file. (Yukihiro Nakadaira)
* updated for version 7.3.171v7.3.171Bram Moolenaar2011-05-054-13/+34
| | | | | | | Problem: When the clipboard isn't supported: ":yank*" gives a confusing error message. Solution: Specifically mention that the register name is invalid. (Jean-Rene David)
* updated for version 7.3.170v7.3.170Bram Moolenaar2011-04-282-2/+5
| | | | | Problem: VMS Makefile for testing was not updated for test77. Solution: Add test77 to the Makefile.
* Updated runtime files.Bram Moolenaar2011-04-2824-133/+501
|
* updated for version 7.3.169v7.3.169Bram Moolenaar2011-04-282-5/+9
| | | | | | Problem: Freeing memory already freed, warning from static code analyzer. Solution: Initialize pointers to NULL, correct use of "mustfree". (partly by Dominique Pelle)
* updated for version 7.3.168v7.3.168Bram Moolenaar2011-04-282-2/+12
| | | | | | Problem: When the second argument of input() contains a CR the text up to that is used without asking the user. (Yasuhiro Matsumoto) Solution: Change CR, NL and ESC in the text to a space.
* updated for version 7.3.167v7.3.167Bram Moolenaar2011-04-282-10/+16
| | | | | | Problem: When using the internal grep QuickFixCmdPost is not triggered. (Yukihiro Nakadaira) Solution: Change the place where autocommands are triggered.
* updated for version 7.3.166v7.3.166Bram Moolenaar2011-04-282-1/+10
| | | | | Problem: Buffer on the stack may be too big Solution: Allocate the space.
* updated for version 7.3.165v7.3.165Bram Moolenaar2011-04-282-0/+3
| | | | | | Problem: ":find" completion does not escape spaces in a directory name. (Isz) Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner)
* updated for version 7.3.164v7.3.164Bram Moolenaar2011-04-284-6/+77
| | | | | | | Problem: C-indenting: a preprocessor statement confuses detection of a function delcaration. Solution: Ignore preprocessor lines. (Lech Lorens) Also recognize the style to put a comma before the argument name.
* updated for version 7.3.163v7.3.163Bram Moolenaar2011-04-282-0/+6
| | | | | | Problem: For the default of 'shellpipe' "mksh" and "pdksh" are not recognized. Solution: Recognize these shell names.
* updated for version 7.3.162v7.3.162Bram Moolenaar2011-04-212-0/+12
| | | | | | Problem: No error message when assigning to a list with an index out of range. (Yukihiro Nakadaira) Solution: Add the error message.
* updated for version 7.3.161v7.3.161Bram Moolenaar2011-04-1114-120/+272
| | | | | Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
* updated for version 7.3.160v7.3.160Bram Moolenaar2011-04-1113-33/+64
| | | | | | Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
* updated for version 7.3.159v7.3.159Bram Moolenaar2011-04-112-1/+3
| | | | | Problem: Using uninitialized pointer when out of memory. Solution: Check for NULL return value.
* updated for version 7.3.158v7.3.158Bram Moolenaar2011-04-112-0/+4
| | | | | Problem: Might use uninitialized memory in C indenting. Solution: Init arrays to empty.
* updated for version 7.3.157v7.3.157Bram Moolenaar2011-04-112-2/+3
| | | | | Problem: Superfluous assignment. Solution: Remove assignment.
* updated for version 7.3.156v7.3.156Bram Moolenaar2011-04-112-4/+6
| | | | | Problem: Tty names possibly left unterminated. Solution: Use vim_strncpy() instead of strncpy().
* updated for version 7.3.155v7.3.155Bram Moolenaar2011-04-112-13/+23
| | | | | | Problem: Crash when using map(), filter() and remove() on v:. (ZyX) Also for extend(). (Yukihiro Nakadaira) Solution: Mark v: as locked. Also correct locking error messages.
* updated for version 7.3.154v7.3.154Bram Moolenaar2011-04-022-5/+7
| | | | | Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Move #define outside of #ifdef.
* updated for version 7.3.153v7.3.153Bram Moolenaar2011-04-022-0/+5
| | | | | Problem: Compiler warning for ambiguous else, missing prototype. Solution: Add braces. (Dominique Pelle) Add prototype for die().
* updated for version 7.3.152v7.3.152Bram Moolenaar2011-04-012-55/+118
| | | | | Problem: Xxd does not check for errors from library functions. Solution: Add error checks. (Florian Zumbiehl)
* Updated runtime files.Bram Moolenaar2011-04-0122-1247/+2313
|
* updated for version 7.3.151v7.3.151Bram Moolenaar2011-04-012-2/+3
| | | | | | Problem: When "unnamedplus" is in 'clipboard' the selection is sometimes also copied to the star register. Solution: Avoid copy to the star register when undesired. (James Vega)
* updated for version 7.3.150v7.3.150Bram Moolenaar2011-04-012-18/+23
| | | | | | Problem: readline() does not return the last line when the NL is missing. (Hong Xu) Solution: When at the end of the file Also check for a previous line.