Problem: redundant else in pum_set_selected()
Solution: Remove it
closes: #12893
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: mathew <glephunter@gmail.com>
ml_append(lnum++, p, 0, FALSE);
break;
}
- else
- {
- *e = NUL;
- ml_append(lnum++, p, (int)(e - p + 1), FALSE);
- *e = '\n';
- p = e + 1;
- }
+ *e = NUL;
+ ml_append(lnum++, p, (int)(e - p + 1), FALSE);
+ *e = '\n';
+ p = e + 1;
}
// delete the empty last line
ml_delete(curbuf->b_ml.ml_line_count);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1784,
/**/
1783,
/**/