diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-06-03 17:12:29 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-03 17:12:29 -0400 |
commit | 2d9c7dd8404f3eb8c20653309bae5ddf60e5201b (patch) | |
tree | 0013858402c971f8a1060466ff12005a5a9251d7 /src/nvim/eval.c | |
parent | abe47d5f64b2748633d1262e2b395ce8322852a7 (diff) | |
parent | b3b25c24907c198fb87e11d188764f6ddf9c02d0 (diff) | |
download | rneovim-2d9c7dd8404f3eb8c20653309bae5ddf60e5201b.tar.gz rneovim-2d9c7dd8404f3eb8c20653309bae5ddf60e5201b.tar.bz2 rneovim-2d9c7dd8404f3eb8c20653309bae5ddf60e5201b.zip |
Merge pull request #4871 from justinmk/housekeeping
reorg; doc
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 92e572db2f..7edf511c18 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -22111,9 +22111,8 @@ bool eval_has_provider(char *name) return false; } -// Compute the `DictWatcher` address from a QUEUE node. This only exists because -// ASAN doesn't handle `QUEUE_DATA` pointer arithmetic, and we blacklist this -// function on .asan-blacklist. +// Compute the `DictWatcher` address from a QUEUE node. This only exists for +// .asan-blacklist (ASAN doesn't handle QUEUE_DATA pointer arithmetic). static DictWatcher *dictwatcher_node_data(QUEUE *q) FUNC_ATTR_NONNULL_ALL FUNC_ATTR_NONNULL_RET { |