Problem: Redundant and strange use of :execute in test_ins_complete.
Solution: Use the executed command directly.
https://github.com/vim/vim/pull/17143
(1 file)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
@zeertzjq pushed 1 commit.
—
View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
index 0e3711eb75530..52721bd532ad0 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -248,11 +248,11 @@ get_vts_sum(int *vts_array, int index)
int sum = 0;
int i;
- // Perform the summation for indeces within the actual array.
+ // Perform the summation for indices within the actual array.
for (i = 1; i <= index && i <= vts_array[0]; i++)
sum += vts_array[i];
- // Add topstops whose indeces exceed the actual array.
+ // Add topstops whose indices exceed the actual array.I guess that those should be tabstops...
Christ van Willegen
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()