(55, discovered by Mark Senior) [FIXED].
- When using -R (regex) and -p (pico mode), subsequent searches after
the first fail if no string is entered (56) [FIXED].
+- Page down on a file of editwinrows fails (again). Reported by Ryan
+ Krebs (57) [FIXED].
** Open BUGS **
- Added case for autoindenting text causing new line (Adam).
- Added SAMELINE case to above. Added checks to cases 1b and
2b for placement of cursor.
+- move.c:
+ page_down()
+ - Check for totlines < editwinrows in check for superflous
+ edit update (fixed BUG #57).
- search.c:
print_replaced()
- s/occurence/occurrence typos (Jordi).
/* AHEM, if we only have a screen or less of text, DONT do an
edit_update, just move the cursor to editbot! */
- if (edittop == fileage && editbot == filebot) {
+ if (edittop == fileage && editbot == filebot && totlines < editwinrows) {
current = editbot;
reset_cursor();
} else if (editbot != filebot || edittop == fileage) {