set_modified();
/* Here we want to rebuild the edit window */
- for (i = 0, editbot = edittop;
- i <= editwinrows - 1
- && i <= totlines
- && editbot->next != NULL; editbot = editbot->next, i++);
+ fix_editbot();
/* If we've gone off the bottom, recenter, otherwise just redraw */
if (current->lineno > editbot->lineno)
current = new;
align(¤t->data);
+ /* The logic here is as follows:
+ * -> If we are at the bottom of the buffer, we want to recenter
+ * (read: rebuild) the screen and forcably move the cursor.
+ * -> otherwise, we want simply to redraw the screen and update
+ * where we think the cursor is.
+ */
if (current_y == editwinrows - 1) {
edit_update(current);
-
- /* FIXME - figure out why the hell this is needed =) */
- reset_cursor();
- } else
+ reset_cursor();
+ } else {
current_y++;
+ edit_refresh();
+ update_cursor();
+ }
totlines++;
set_modified();
- update_cursor();
- edit_refresh();
placewewant = xplustabs();
return 1;
}
* This is Chris' very ugly spell function. Someone please make this
* better =-)
*/
-
int do_spell(void)
{
#ifdef NANO_SMALL
#endif /* HAVE_WRESIZE */
#endif /* HAVE_NCURSES_H */
- editbot = edittop;
-
- for (i = 0; (i <= editwinrows - 1) && (editbot->next != NULL)
- && (editbot->next != filebot); i++)
- editbot = editbot->next;
+ fix_editbot();
if (current_y > editwinrows - 1) {
edit_update(editbot);
edit_update(current);
center_cursor();
} else {
- int i = 0;
-
- editbot = edittop;
- for (i = 0; (i <= editwinrows - 1) && (editbot->next != NULL)
- && (editbot->next != filebot); i++)
- editbot = editbot->next;
+ fix_editbot();
}
edit_refresh();
- edit_refresh(); /* XXX FIXME XXX */
statusbar("Justify Complete");
return 1;
#else
void reset_cursor(void);
void check_statblank(void);
void update_line(filestruct * fileptr, int index);
+void fix_editbot(void);
void statusbar(char *msg, ...);
void titlebar(void);
void previous_line(void);
}
#endif /* DEBUG */
}
+
+/* Fix editbot based on the assumption that edittop is correct */
+void fix_editbot(void) {
+ int i;
+ editbot = edittop;
+ for(i = 0; (i <= editwinrows - 1) && (editbot->next != NULL)
+ && (editbot != filebot); i++, editbot = editbot->next);
+}
+