diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-06-02 18:54:31 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-02 18:56:06 -0400 |
commit | 1fb20575f1c3a6fb8a648a0bd8669a774da7b887 (patch) | |
tree | aed67faecb0832980ad50a9f8d8426ee5486d9de /src | |
parent | 8d92494c7c9f2037c72dc170312324fe8690845c (diff) | |
download | rneovim-1fb20575f1c3a6fb8a648a0bd8669a774da7b887.tar.gz rneovim-1fb20575f1c3a6fb8a648a0bd8669a774da7b887.tar.bz2 rneovim-1fb20575f1c3a6fb8a648a0bd8669a774da7b887.zip |
Fix diagrams in ex_cmds.c #798
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_cmds.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 909e79be6d..2d62d1bc71 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -6223,9 +6223,9 @@ void set_context_in_sign_cmd(expand_T *xp, char_u *arg) cmd_idx = sign_cmd_idx(arg, end_subcmd); - /* :sign {subcmd} {subcmd_args} - * | - * begin_subcmd_args */ + // :sign {subcmd} {subcmd_args} + // | + // begin_subcmd_args begin_subcmd_args = skipwhite(end_subcmd); p = skiptowhite(begin_subcmd_args); if (*p == NUL) @@ -6250,13 +6250,13 @@ void set_context_in_sign_cmd(expand_T *xp, char_u *arg) return; } - /* expand last argument of subcmd */ + // Expand last argument of subcmd. + // + // :sign define {name} {args}... + // | + // p - /* :sign define {name} {args}... - * | - * p */ - - /* Loop until reaching last argument. */ + // Loop until reaching last argument. do { p = skipwhite(p); @@ -6266,9 +6266,9 @@ void set_context_in_sign_cmd(expand_T *xp, char_u *arg) p = vim_strchr(last, '='); - /* :sign define {name} {args}... {last}= - * | | - * last p */ + // :sign define {name} {args}... {last}= + // | | + // last p if (p == NUL) { /* Expand last argument name (before equal sign). */ |