diff --git a/ChangeLog b/ChangeLog index 0578d6998273b3af46d03f1aabe7fb4d1c39d4f7..bf43c6b241b972c6546762f4e36f46157aa25174 100644 --- a/ChangeLog +++ b/ChangeLog @@ -227,10 +227,6 @@ CVS code - - Make goal a ssize_t instead of an int, since fill is now a ssize_t, and the position at which a line is broken can be greater than COLS. (DLR) - handle_sigwinch() - - Call shortcut_init(FALSE) defore redisplaying the main list, - so that "UnJustify" isn't erroneously displayed after we - resize or after we continue from a suspend. (DLR) main() - Tweak the command line parsing routine so that multiple +LINE flags are properly interpreted in multibuffer mode. (DLR) diff --git a/src/nano.c b/src/nano.c index ab87e7c1c826ae543040ac577b30abd6a8bb4b05..08b2ba674b24e4d74b369ce40c53140d255d4a79 100644 --- a/src/nano.c +++ b/src/nano.c @@ -3089,10 +3089,8 @@ void handle_sigwinch(int s) * dimensions. */ window_init(); - /* Redraw the contents of the windows that need it, and display the - * shortcut list with UnCut. */ + /* Redraw the contents of the windows that need it. */ blank_statusbar(); - shortcut_init(FALSE); display_main_list(); total_refresh();