Commit 89ca96bd authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in handle_sigwinch(), just in case we're in the statusbar prompt, reset

the statusbar cursor position when resizing the window


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3859 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 8 additions and 0 deletions
+8 -0
...@@ -163,6 +163,10 @@ CVS code - ...@@ -163,6 +163,10 @@ CVS code -
lines would not be updated properly if the current line was lines would not be updated properly if the current line was
not the first or last line of the edit window. (DLR, found by not the first or last line of the edit window. (DLR, found by
Mike Frysinger) Mike Frysinger)
- nano.c:
handle_sigwinch()
- Just in case we're in the statusbar prompt, reset the
statusbar cursor position when resizing the window. (DLR)
- nano.h: - nano.h:
- Remove the manual disabling of color support if regex.h isn't - Remove the manual disabling of color support if regex.h isn't
found, as configure.ac now handles that. (DLR) found, as configure.ac now handles that. (DLR)
......
...@@ -1088,6 +1088,10 @@ RETSIGTYPE handle_sigwinch(int signal) ...@@ -1088,6 +1088,10 @@ RETSIGTYPE handle_sigwinch(int signal)
COLS = win.ws_col; COLS = win.ws_col;
LINES = win.ws_row; LINES = win.ws_row;
/* Just in case we're in the statusbar prompt, reset the statusbar
* cursor position. */
do_prompt_abort();
/* If we've partitioned the filestruct, unpartition it now. */ /* If we've partitioned the filestruct, unpartition it now. */
if (filepart != NULL) if (filepart != NULL)
unpartition_filestruct(&filepart); unpartition_filestruct(&filepart);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment