- winio.c:
get_accepted_kbinput()
- Don't use "kbinput = wgetch(win)" as a switch value. (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
+ (a) when we move onto the "$" at the end of the line on the
+ first page and (b) when we move onto the character just before
+ the "$" on subsequent pages. (DLR)
do_credits()
- Use nanosleep() instead of usleep(). The latter is only
standard under BSD, whereas the former is POSIX compliant.
if (column == 0 || column < COLS - 1)
return 0;
else if (COLS > 9)
- return column - 7 - (column - 8) % (COLS - 9);
+ return column - 7 - (column - 7) % (COLS - 8);
else if (COLS > 2)
return column - (COLS - 2);
else