summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-03-22Add missing files for patch 7.3.143.v7.3.143Bram Moolenaar
2011-03-22updated for version 7.3.143Bram Moolenaar
Problem: Memfile is not tested sufficiently. Looking up blocks in a memfile is slow when there are many blocks. Solution: Add high level test and unittest. Adjust the number of hash buckets to the number of blocks. (Ivan Krasilnikov)
2011-03-22Updated runtime file. Fix Italian translations.Bram Moolenaar
2011-03-22updated for version 7.3.142v7.3.142Bram Moolenaar
Problem: Python stdout doesn't have a flush() method, causing an import to fail. Solution: Add a dummy flush() method. (Tobias Columbus)
2011-03-22updated for version 7.3.141v7.3.141Bram Moolenaar
Problem: When a key code is not set get a confusing error message. Solution: Change the error message to say the key code is not set.
2011-03-22Updated runtime files.Bram Moolenaar
2011-03-22updated for version 7.3.140v7.3.140Bram Moolenaar
Problem: Crash when drawing the "$" at end-of-line for list mode just after the window border and 'cursorline' is set. Solution: Don't check for 'cursorline'. (Quentin Carbonneaux)
2011-03-22updated for version 7.3.139v7.3.139Bram Moolenaar
Problem: When 'lazyredraw' is set ":ver" output can't be read. Solution: Don't redraw the screen when at a prompt or command line.
2011-03-03updated for version 7.3.138v7.3.138Bram Moolenaar
Problem: ":com" changes the multi-byte text of :echo. (Dimitar Dimitrov) Solution: Search for K_SPECIAL as a byte, not a character. (Ben Schmidt)
2011-03-03updated for version 7.3.137v7.3.137Bram Moolenaar
Problem: When 'lazyredraw' is set the screen may not be updated. (Ivan Krasilnikov) Solution: Call update_screen() before waiting for input.
2011-03-03updated for version 7.3.136v7.3.136Bram Moolenaar
Problem: Duplicate include of assert.h. Solution: Remove it.
2011-02-25updated for version 7.3.135v7.3.135Bram Moolenaar
Problem: When there is no previous substitute pattern, the previous search pattern is used. The other way around doesn't work. Solution: When there is no previous search pattern, use the previous substitute pattern if possible. (Christian Brabandt)
2011-02-25updated for version 7.3.134v7.3.134Bram Moolenaar
Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
2011-02-25updated for version 7.3.133v7.3.133Bram Moolenaar
Problem: When using encryption it's not clear what method was used. Solution: In the file message show "blowfish" when using blowfish.
2011-02-25updated for version 7.3.132v7.3.132Bram Moolenaar
Problem: C++ style comments. Solution: Change to C comments.
2011-02-25updated for version 7.3.131v7.3.131Bram Moolenaar
Problem: Including errno.h too often. Solution: Don't include errno.h in Unix header file.
2011-02-25updated for version 7.3.130v7.3.130Bram Moolenaar
Problem: Variable misplaced in #ifdef. Solution: Move clipboard_event_time outside of #ifdef.
2011-02-25updated for version 7.3.129v7.3.129Bram Moolenaar
Problem: Using integer like a boolean. Solution: Nicer check for integer being non-zero.
2011-02-25updated for version 7.3.128v7.3.128Bram Moolenaar
Problem: Another compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf().
2011-02-25updated for version 7.3.127v7.3.127Bram Moolenaar
Problem: Compiler complains about comma. Solution: Remove comma after last enum element.
2011-02-25updated for version 7.3.126v7.3.126Bram Moolenaar
Problem: Compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf().
2011-02-25Runtime file updates.Bram Moolenaar
2011-02-15updated for version 7.3.125v7.3.125Bram Moolenaar
Problem: MSVC: Problem with quotes in link argument. Solution: Escape backslashes and quotes. (Weasley)
2011-02-15updated for version 7.3.124v7.3.124Bram Moolenaar
Problem: When writing a file in binary mode it may be missing the final EOL if a file previously read was missing the EOL. (Kevin Goodsell) Solution: Move the write_no_eol_lnum into the buffer struct.
2011-02-15updated for version 7.3.123v7.3.123Bram Moolenaar
Problem: ml_get error when executing register being recorded into, deleting lines and 'conceallevel' is set. (ZyX) Solution: Don't redraw a line for concealing when it doesn't exist.
2011-02-15updated for version 7.3.122v7.3.122Bram Moolenaar
Problem: Having auto/config.mk in the repository causes problems. Solution: Remove auto/config.mk from the distribution. In the toplevel Makefile copy it from the "dist" file.
2011-02-15updated for version 7.3.121v7.3.121Bram Moolenaar
Problem: Complicated 'statusline' causes a crash. (Christian Brabandt) Solution: Check that the number of items is not too big.
2011-02-15updated for version 7.3.120v7.3.120Bram Moolenaar
Problem: The message for an existing swap file is too long to fit in a 25 line terminal. Solution: Make the message shorter. (Chad Miller)
2011-02-12updated for version 7.3.119v7.3.119Bram Moolenaar
Problem: Build problem on Mac. (Nicholas Stallard) Solution: Use "extern" instead of "EXTERN" for p_vfile.
2011-02-09updated for version 7.3.118v7.3.118Bram Moolenaar
Problem: Ruby uses SIGVTALARM which makes Vim exit. (Alec Tica) Solution: Ignore SIGVTALARM. (Dominique Pelle)
2011-02-09updated for version 7.3.117v7.3.117Bram Moolenaar
Problem: On some systems --as-needed does not work, because the "tinfo" library is included indirectly from "ncurses". (Charles Campbell) Solution: In configure prefer using "tinfo" instead of "ncurses".
2011-02-09updated for version 7.3.116v7.3.116Bram Moolenaar
Problem: 'cursorline' is displayed too short when there are concealed characters and 'list' is set. (Dennis Preiser) Solution: Check for 'cursorline' when 'list' is set. (Christian Brabandt)
2011-02-09Updated runtime files and translations.Bram Moolenaar
2011-02-09updated for version 7.3.115v7.3.115Bram Moolenaar
Problem: Vim can crash when tmpnam() returns NULL. Solution: Check for NULL. (Hong Xu)
2011-02-09updated for version 7.3.114v7.3.114Bram Moolenaar
Problem: Potential problem in initialization when giving an error message early. Solution: Initialize 'verbosefile' empty. (Ben Schmidt)
2011-02-09updated for version 7.3.113v7.3.113Bram Moolenaar
Problem: Windows: Fall back directory for creating temp file is wrong. Solution: Use "." instead of empty string. (Hong Xu)
2011-02-01updated for version 7.3.112v7.3.112Bram Moolenaar
Problem: Setting 'statusline' to "%!'asdf%' reads uninitialized memory. Solution: Check for NUL after %.
2011-02-01updated for version 7.3.111v7.3.111Bram Moolenaar
Problem: Executing a :normal command in 'statusline' evaluation causes the cursor to move. (Dominique Pelle) Solution: When updating the cursor for 'cursorbind' allow the cursor beyond the end of the line. When evaluating 'statusline' temporarily reset 'cursorbind'.
2011-02-01updated for version 7.3.110v7.3.110Bram Moolenaar
Problem: The "nbsp" item in 'listchars' isn't used for ":list". Solution: Make it work. (Christian Brabandt)
2011-02-01updated for version 7.3.109v7.3.109Bram Moolenaar
Problem: Processing new Esperanto spell file fails and crashes Vim. (Dominique Pelle) Solution: When running out of memory give an error. Handle '?' in COMPOUNDRULE properly.
2011-02-01updated for version 7.3.108v7.3.108Bram Moolenaar
Problem: Useless check for NULL when calling vim_free(). Solution: Remove the check. (Dominique Pelle)
2011-01-22updated for version 7.3.107v7.3.107Bram Moolenaar
Problem: Year number for :undolist can be confused with month or day. Solution: Change "%y" to "%Y".
2011-01-22updated for version 7.3.106v7.3.106Bram Moolenaar
Problem: When 'cursorbind' is set another window may scroll unexpectedly when 'scrollbind' is also set. (Xavier Wang) Solution: Don't call update_topline() if 'scrollbind' is set.
2011-01-22updated for version 7.3.105v7.3.105Bram Moolenaar
Problem: Can't get the value of "b:changedtick" with getbufvar(). Solution: Make it work. (Christian Brabandt)
2011-01-22updated for version 7.3.104v7.3.104Bram Moolenaar
Problem: Conceal: using Tab for cchar causes problems. (ZyX) Solution: Do not accept a control character for cchar.
2011-01-22updated for version 7.3.103v7.3.103Bram Moolenaar
Problem: Changing 'fileformat' and then using ":w" in an empty file sets the 'modified' option. Solution: In unchanged() don't ignore 'ff' for an empty file.
2011-01-17updated for version 7.3.102v7.3.102Bram Moolenaar
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.
2011-01-17updated for version 7.3.101v7.3.101Bram Moolenaar
Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas)
2011-01-17updated for version 7.3.100v7.3.100Bram Moolenaar
Problem: When using :normal v:count isn't set. Solution: Call normal_cmd() with toplevel set to TRUE.
2011-01-08Updated runtime files.Bram Moolenaar