diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-21 00:00:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-21 00:00:13 +0200 |
commit | ad3ec76bb8030b9a1d3f0a49c374d0de2383b977 (patch) | |
tree | 6cc66e85aa0b54ce4ee2e9fcd47987963f022c57 /src/channel.c | |
parent | 037c54f261818439755d56e318da068f97997fb5 (diff) | |
download | vim-git-ad3ec76bb8030b9a1d3f0a49c374d0de2383b977.tar.gz |
patch 8.1.1194: typos and small problems in source filesv8.1.1194
Problem: Typos and small problems in source files.
Solution: Small fixes.
Diffstat (limited to 'src/channel.c')
-rw-r--r-- | src/channel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channel.c b/src/channel.c index dd47c5b02..ca8310258 100644 --- a/src/channel.c +++ b/src/channel.c @@ -1906,7 +1906,7 @@ channel_save(channel_T *channel, ch_part_T part, char_u *buf, int len, if (prepend) { - /* preend node to the head of the queue */ + // prepend node to the head of the queue node->rq_next = head->rq_next; node->rq_prev = NULL; if (head->rq_next == NULL) @@ -1917,7 +1917,7 @@ channel_save(channel_T *channel, ch_part_T part, char_u *buf, int len, } else { - /* append node to the tail of the queue */ + // append node to the tail of the queue node->rq_next = NULL; node->rq_prev = head->rq_prev; if (head->rq_prev == NULL) |