Files
neovim/test/functional
Justin M. Keyes a9d7ec4587 refactor: introduce XFREE_CLEAR()
Unfortunately we cannot indiscriminately replace xfree() with
XFREE_CLEAR(), because comparing pointers after freeing them is a common
pattern. Example in `tv_list_remove_items()`:

    xfree(li);
    if (li == item2) {
      break;
    }

Instead we can do it selectively/explicitly.

ref #1375
2019-05-25 10:01:17 +02:00
..
2019-05-25 10:01:17 +02:00
2019-04-27 16:19:40 +02:00
2019-05-05 23:01:35 +02:00
2019-05-05 14:05:25 +02:00
2016-06-10 21:50:49 +03:00