aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds2.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-22 04:30:48 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-06-23 18:17:09 -0400
commit98801ec7aea199b80373d1dc072021a98db63a8b (patch)
tree7336ebcc53f632ac4d96a59dc45b27e16533d4a0 /src/nvim/ex_cmds2.c
parentff244a1309482e818c6731038f0232fae613431c (diff)
downloadrneovim-98801ec7aea199b80373d1dc072021a98db63a8b.tar.gz
rneovim-98801ec7aea199b80373d1dc072021a98db63a8b.tar.bz2
rneovim-98801ec7aea199b80373d1dc072021a98db63a8b.zip
vim-patch:8.1.0166: using dict_add_nr_str() is clumsy
Problem: Using dict_add_nr_str() is clumsy. Solution: Split into two functions. (Ozaki Kiichi, closes vim/vim#3154) https://github.com/vim/vim/commit/e0be167a805fd547c25ec1ec97fd4c7f13046236
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r--src/nvim/ex_cmds2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c
index 3b83c59675..2fb818760a 100644
--- a/src/nvim/ex_cmds2.c
+++ b/src/nvim/ex_cmds2.c
@@ -611,7 +611,7 @@ static int dbg_parsearg(char_u *arg, garray_T *gap)
return OK;
}
-/// ":breakadd".
+/// ":breakadd". Also used for ":profile".
void ex_breakadd(exarg_T *eap)
{
struct debuggy *bp;