Another page_down tweak
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@144 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
f6a6b5aa86
commit
1a471392c5
|
@ -14,6 +14,10 @@ CVS code
|
||||||
edit_refresh()
|
edit_refresh()
|
||||||
- Added check for current line "running" off the screen.
|
- Added check for current line "running" off the screen.
|
||||||
Hopefully this will not cause any recursive lockups.
|
Hopefully this will not cause any recursive lockups.
|
||||||
|
- move.c:
|
||||||
|
page_down()
|
||||||
|
- do an edit_update() at last case if we're not at the first
|
||||||
|
screen...
|
||||||
|
|
||||||
nano-0.9.14 - 07/27/2000
|
nano-0.9.14 - 07/27/2000
|
||||||
- nano.h:
|
- nano.h:
|
||||||
|
|
4
move.c
4
move.c
|
@ -62,7 +62,9 @@ int page_down(void)
|
||||||
while (current != filebot) {
|
while (current != filebot) {
|
||||||
current = current->next;
|
current = current->next;
|
||||||
current_y++;
|
current_y++;
|
||||||
edit_update(current);
|
|
||||||
|
if (edittop != fileage)
|
||||||
|
edit_update(current);
|
||||||
}
|
}
|
||||||
|
|
||||||
update_cursor();
|
update_cursor();
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"POT-Creation-Date: 2000-07-28 08:30-0400\n"
|
"POT-Creation-Date: 2000-07-28 10:12-0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
Loading…
Reference in New Issue