1
0
forked from aniani/vim

patch 8.1.1194: typos and small problems in source files

Problem:    Typos and small problems in source files.
Solution:   Small fixes.
This commit is contained in:
Bram Moolenaar
2019-04-21 00:00:13 +02:00
parent 037c54f261
commit ad3ec76bb8
10 changed files with 16 additions and 15 deletions

View File

@@ -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)