get_escape_seq_abcd()
- A resurrected version of the old abcd() function, readded in
order to simplify get_escape_seq_kbinput(). (DLR)
- get_mouse_kbinput()
+ get_mouseinput()
- Interpret shortcut key values slightly more stringently when
ungetch()ing them. (DLR)
+ strlenpt()
+ - Properly cast the second parameter of the strnlenpt() call to
+ size_t. (DLR)
get_page_start()
- For consistency, tweak so that scrolling always occurs when we
try to move onto the "$" at the end of the line, as opposed to
/* How many columns wide is buf? */
size_t strlenpt(const char *buf)
{
- return strnlenpt(buf, -1);
+ return strnlenpt(buf, (size_t)-1);
}
void blank_bottombars(void)