Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | patch 8.0.0082v8.0.0082 | Bram Moolenaar | 2016-11-12 | 1 | -1/+1 |
| | | | | | Problem: Extension for configure should be ".ac". Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173) | ||||
* | patch 8.0.0074v8.0.0074 | Bram Moolenaar | 2016-11-10 | 1 | -1/+1 |
| | | | | | | Problem: Cannot make Vim fail on an internal error. Solution: Add IEMSG() and IEMSG2(). (Domenique Pelle) Avoid reporting an internal error without mentioning where. | ||||
* | patch 7.4.2293v7.4.2293 | Bram Moolenaar | 2016-08-29 | 1 | -1/+1 |
| | | | | | Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino) | ||||
* | patch 7.4.1399v7.4.1399 | Bram Moolenaar | 2016-02-23 | 1 | -1/+1 |
| | | | | | Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code. | ||||
* | patch 7.4.1205v7.4.1205 | Bram Moolenaar | 2016-01-30 | 1 | -39/+39 |
| | | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi) | ||||
* | patch 7.4.1200v7.4.1200 | Bram Moolenaar | 2016-01-29 | 1 | -6/+6 |
| | | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) | ||||
* | updated for version 7.4.399v7.4.399 | Bram Moolenaar | 2014-08-10 | 1 | -162/+145 |
| | | | | | | | | | Problem: Encryption implementation is messy. Blowfish encryption has a weakness. Solution: Refactor the encryption, store the state in an allocated struct instead of using a save/restore mechanism. Introduce the "blowfish2" method, which does not have the weakness and encrypts the whole undo file. (largely by David Leadbeater) | ||||
* | updated for version 7.4.172v7.4.172 | Bram Moolenaar | 2014-02-11 | 1 | -20/+20 |
| | | | | | | Problem: The blowfish code mentions output feedback, but the code is actually doing cipher feedback. Solution: Adjust names and comments. | ||||
* | updated for version 7.3.126v7.3.126 | Bram Moolenaar | 2011-02-25 | 1 | -2/+3 |
| | | | | | Problem: Compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf(). | ||||
* | Support completion for ":find". (Nazri Ramliy) | Bram Moolenaar | 2010-07-14 | 1 | -4/+4 |
| | | | | Cleanup white space. | ||||
* | Fix compiler warnings for shadowed variables. Make 'conceal' a long instead | Bram Moolenaar | 2010-06-22 | 1 | -6/+6 |
| | | | | of int. | ||||
* | Crypt the swapfile. | Bram Moolenaar | 2010-06-21 | 1 | -7/+35 |
| | |||||
* | Added salt to blowfish encryption. | Bram Moolenaar | 2010-06-13 | 1 | -10/+32 |
| | |||||
* | Fix a few compiler warnings. Fix crash with encrypted undo file. | Bram Moolenaar | 2010-06-06 | 1 | -0/+5 |
| | |||||
* | Optimize the blowfish crypt/decrypt code a bit more. | Bram Moolenaar | 2010-06-02 | 1 | -27/+81 |
| | |||||
* | Made crypt/decrypt faster. | Bram Moolenaar | 2010-06-01 | 1 | -6/+7 |
| | |||||
* | Improve the MS-Windows installer. | Bram Moolenaar | 2010-05-24 | 1 | -2/+2 |
| | |||||
* | Fix uninit memory read in undo code. Fix uint32_t in proto file. | Bram Moolenaar | 2010-05-24 | 1 | -1/+1 |
| | | | | A few minor changes. | ||||
* | Use UINT32_T in the code, define it to uint32_t or unsigned int. | Bram Moolenaar | 2010-05-19 | 1 | -19/+27 |
| | | | | Better autoconf check for uint32_t. | ||||
* | Fix build on Cygwin and MingW. | Bram Moolenaar | 2010-05-18 | 1 | -3/+5 |
| | |||||
* | Fixed encryption big/little endian test. | Bram Moolenaar | 2010-05-17 | 1 | -44/+49 |
| | | | | | | Use uint32_t to avoid crash on 64 bit machines. Added error numbers for Blowfish errors. Fixed the tiny version not building. | ||||
* | Minor updates to blowfish encryption. | Bram Moolenaar | 2010-05-16 | 1 | -4/+4 |
| | |||||
* | Add the blowfish encryption patch from Mohsin Ahmed. Needs more work. | Bram Moolenaar | 2010-05-16 | 1 | -0/+581 |