vi: fix reversed checks for underflow
cmdcnt = 0;
end_cmd_q(); // stop adding to q
last_status_cksum = 0; // force status update
- if ((p[-1] != '\n') && (dot > text)) {
+ if ((p > text) && (p[-1] != '\n')) {
p--;
}
} else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
// 123456789
- if ((p[-1] != '\n') && (dot>text)) {
+ if ((p > text) && (p[-1] != '\n')) {
p--;
p = text_hole_delete(p, p); // shrink buffer 1 char
}
labels);
need_separator = separator;
flags &= ~ *masks;
- masks++;
}
+ masks++;
labels += strlen(labels) + 1;
}
return flags;