Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Introduce nvim namespace: Move files. | Eliseo Martínez | 2014-05-15 |
| | | | | | | Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library. | ||
* | replaced `vim_free()` calls with `free()` calls | Matthias Beyer | 2014-05-05 |
| | |||
* | revert #652 | Justin M. Keyes | 2014-05-01 |
| | | | | | | | reverting broad cosmetic/style change because: - increases merge-conflicts - increases overhead of merging upstream Vim patches - reasons for change are ambiguous, so default to no change | ||
* | Remove NUL macro | Marco Hinz | 2014-04-29 |
| | |||
* | Remove simpler cases of OOM error handling (after *alloc calls) | Felipe Oliveira Carvalho | 2014-04-06 |
| | | | | | | | | | | | | | | | | | | By simpler cases I mean cases where the OOM error is not expected to be handled by the caller of the function that calls `alloc`, `lalloc`, `xrealloc`, `xmalloc`, `alloc_clear`, and `lalloc_clear`. These are the functions that: - Do not return an allocated buffer - Have OOM as the only error condition I took note of the functions that expect the caller to handle the OOM error and will go through them to check all the callers that may be handling OOM error in future commits. I'm ignoring eval.c and ex_.c in this series of commits. eval.c will soon be obsolete and I will deal with ex_.c in later PRs. | ||
* | Extract memory.c from misc2.c | John Schmidt | 2014-04-04 |
| | |||
* | adapt to the style guildelines | Petter Wahlman | 2014-03-19 |
| | | | | | semi-automated harvest of low hanging fruit: change the unorthodox use of whitespace. | ||
* | Extract indent_c.c from misc1.c | John | 2014-03-14 |