print_flags: fix trivial thinko

vi: fix reversed checks for underflow
This commit is contained in:
Denis Vlasenko 2008-06-26 22:40:02 +00:00
parent 5fb79535ee
commit 9092f754bd
2 changed files with 3 additions and 3 deletions

View File

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

View File

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