mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
print_flags: fix trivial thinko
vi: fix reversed checks for underflow
This commit is contained in:
parent
5fb79535ee
commit
9092f754bd
@ -1659,12 +1659,12 @@ static char *char_insert(char *p, char c) // insert the char c at 'p'
|
|||||||
cmdcnt = 0;
|
cmdcnt = 0;
|
||||||
end_cmd_q(); // stop adding to q
|
end_cmd_q(); // stop adding to q
|
||||||
last_status_cksum = 0; // force status update
|
last_status_cksum = 0; // force status update
|
||||||
if ((p[-1] != '\n') && (dot > text)) {
|
if ((p > text) && (p[-1] != '\n')) {
|
||||||
p--;
|
p--;
|
||||||
}
|
}
|
||||||
} else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
|
} else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
|
||||||
// 123456789
|
// 123456789
|
||||||
if ((p[-1] != '\n') && (dot>text)) {
|
if ((p > text) && (p[-1] != '\n')) {
|
||||||
p--;
|
p--;
|
||||||
p = text_hole_delete(p, p); // shrink buffer 1 char
|
p = text_hole_delete(p, p); // shrink buffer 1 char
|
||||||
}
|
}
|
||||||
|
@ -19,8 +19,8 @@ int print_flags_separated(const int *masks, const char *labels, int flags, const
|
|||||||
labels);
|
labels);
|
||||||
need_separator = separator;
|
need_separator = separator;
|
||||||
flags &= ~ *masks;
|
flags &= ~ *masks;
|
||||||
masks++;
|
|
||||||
}
|
}
|
||||||
|
masks++;
|
||||||
labels += strlen(labels) + 1;
|
labels += strlen(labels) + 1;
|
||||||
}
|
}
|
||||||
return flags;
|
return flags;
|
||||||
|
Loading…
Reference in New Issue
Block a user