Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Extract memory.c from misc2.c | John Schmidt | 2014-04-04 |
| | |||
* | Rename ga_init2() to ga_init() | John Schmidt | 2014-03-31 |
| | |||
* | Inline ga_init() | John Schmidt | 2014-03-31 |
| | |||
* | xrealloc(): similar to xmalloc() | Felipe Oliveira Carvalho | 2014-03-31 |
| | | | | | Replaced all calls to realloc by xrealloc. All `== NULL` tests can be removed and the code within `!= NULL` tests can be unwrapped. | ||
* | Move remove_duplicates to garray.c | John Schmidt | 2014-03-29 |
| | |||
* | Use realloc instead of vim_realloc | Felipe Oliveira Carvalho | 2014-03-26 |
| | |||
* | Use memmove instead of mch_memmove | Felipe Oliveira Carvalho | 2014-03-26 |
| | |||
* | Use memset instead of vim_memset | Felipe Oliveira Carvalho | 2014-03-25 |
| | | | | | | | | | Ran some commands on terminal, reviewed changes, and made some manual changes too. find src | xargs perl -i -p -e "s/vim_memset/memset/g" git grep -l memset | egrep "\.c$" | xargs perl -i -p -e \ 's/(#include "vim\.h")/#include <string.h>\n\n\1/g' | ||
* | Issue #311 - Clean up blowfish.c/h, charset.c/h, diff.c/h, digraph.c/h, ↵ | David Z. Chen | 2014-03-16 |
| | | | | garray.c/h, hashtab.c/h, popupmnu.c/h, sha256.c/h, version.c/h. Update uncrustify to move logical operators to the beginning of the line when splitting. Also, clean up arabic.c/h and farsi.c/h | ||
* | Remove USE_SYSTEM and code only run under USE_SYSTEM | Simen Endsjø | 2014-03-05 |
| | |||
* | Extract garray.c from misc2.c | Felipe Oliveira Carvalho | 2014-02-28 |
Start to split misc2.c in many other files (see #209). |