summaryrefslogtreecommitdiffstats
path: root/src/memline.c
AgeCommit message (Collapse)Author
2013-05-06updated for version 7.3.925v7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2012-10-03updated for version 7.3.677v7.3.677Bram Moolenaar
Problem: buf_spname() is used inconsistently. Solution: Make the return type a char_u pointer. Check the size of the returned string.
2011-10-26updated for version 7.3.349v7.3.349Bram Moolenaar
Problem: When running out of memory during startup trying to open a swapfile will loop forever. Solution: Let findswapname() set dirp to NULL if out of memory.
2011-06-13updated for version 7.3.216v7.3.216Bram Moolenaar
Problem: When recovering a file a range of lines is missing. (Charles Jie) Solution: Reset the index when advancing to the next pointer block. Add a test to verify recovery works.
2011-05-10updated for version 7.3.187v7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
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-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.
2010-12-17updated for version 7.3.087v7.3.087Bram Moolenaar
Problem: EINTR is not always defined. Solution: Include errno.h in vim.h.
2010-12-17updated for version 7.3.085v7.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.083v7.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-08updated for version 7.3.077v7.3.077Bram Moolenaar
Problem: When updating crypt of swapfile fails there is no error message. (Carlo Teubner) Solution: Add the error message.
2010-08-08Remove unused code.Bram Moolenaar
2010-08-04Fix: when setting crypt key seed was not updated when the swap file wasn'tBram Moolenaar
created yet.
2010-07-25Better fix for memory access in recovery. (Dominique Pelle)Bram Moolenaar
2010-07-25Fix memory access to 'cryptmethod' during recovery. (Dominique Pelle)Bram Moolenaar
2010-07-24Add the 'undoreload' option to be able to undo a file reload.Bram Moolenaar
2010-07-20Change 'cryptmethod' from a number to a string option. Make it global-local.Bram Moolenaar
2010-07-04Mainly documentation updates.Bram Moolenaar
2010-06-24Fix a memory leak in encryption. (Dominique Pelle)Bram Moolenaar
2010-06-24Fix compiler warning.Bram Moolenaar
2010-06-22Fix compiler warnings for shadowed variables. Make 'conceal' a long insteadBram Moolenaar
of int.
2010-06-21Crypt the swapfile.Bram Moolenaar
2010-05-31Correct use of long instead of off_t for file size. (James Vega)Bram Moolenaar
2010-05-31Add test for gettabvar() and settabvar().Bram Moolenaar
2010-05-25updated for version 7.2.438Bram Moolenaar
Problem: "vim -r" crashes. Solution: Don't use NULL pointer argument.
2010-05-23Included patch for persistent undo. Lots of changes and added test.Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-15After recovery check if the text changed. If it did mark the buffer asBram Moolenaar
modified.
2010-05-14updated for version 7.2.427v7.2.427Bram Moolenaar
Problem: The swapfile is created using the destination of a symlink, but recovery doesn't follow symlinks. Solution: When recovering, resolve symlinks. (James Vega)
2010-03-10updated for version 7.2.391v7.2.391Bram Moolenaar
Problem: Internal alloc(0) error when doing "CTRL-V $ c". (Martti Kuparinen) Solution: Fix computations in getvcol(). (partly by Lech Lorens)
2010-02-11updated for version 7.2.359v7.2.359Bram Moolenaar
Problem: Crash when using the Netbeans join command. Solution: Make sure the ml_flush_line() function is not used recursively. (Xavier de Gaye)
2009-11-17updated for version 7.2-300v7.2.300Bram Moolenaar
2009-11-03updated for version 7.2-275v7.2.275Bram Moolenaar
2009-11-03updated for version 7.2-272v7.2.272Bram Moolenaar
2009-04-22updated for version 7.2-154v7.2.154Bram Moolenaar
2009-04-22updated for version 7.2-153v7.2.153Bram Moolenaar
2008-07-13updated for version 7.2b-000v7.2b.000Bram Moolenaar
2008-06-24updated for version 7.2av7.2aBram Moolenaar
2007-05-10updated for version 7.1bv7.1bBram Moolenaar
2007-05-06updated for version 7.1aBram Moolenaar
2007-04-26updated for version 7.0-231v7.0.231Bram Moolenaar
2007-03-06updated for version 7.0-208v7.0.208Bram Moolenaar
2007-02-13updated for version 7.0-194v7.0.194Bram Moolenaar
2007-02-07updated for version 7.0-192v7.0.192Bram Moolenaar
2007-01-09updated for version 7.0-180v7.0.180Bram Moolenaar
2007-01-09updated for version 7.0-179v7.0.179Bram Moolenaar
2006-11-21updated for version 7.0-168v7.0.168Bram Moolenaar
2006-11-01updated for version 7.0-156v7.0.156Bram Moolenaar
2006-10-10updated for version 7.0-131v7.0.131Bram Moolenaar
2006-10-10updated for version 7.0-127v7.0.127Bram Moolenaar