diff --git a/ChangeLog b/ChangeLog index a0e0d2052d13662c0f1003e31b58e3746b462772..362e5350312ee3779731c0467eb4f8d6a27704e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -71,6 +71,8 @@ CVS code - do_para_begin(), do_para_end() - Maintain current_y's value when moving up or down lines so that smooth scrolling works correctly. (DLR) + main() + - Don't let meta sequences get through to do_char(). (DLR) - nano.h: - Add WIDTH_OF_TAB #define, containing the default width of a tab. (DLR) diff --git a/src/nano.c b/src/nano.c index a5688de44d67582d467129e26ad8dd871cb4f43b..f1ac32556fe6383bf38349e564e7fd4aed1071c3 100644 --- a/src/nano.c +++ b/src/nano.c @@ -3493,8 +3493,8 @@ int main(int argc, char **argv) /* Last gasp, stuff that's not in the main lists. */ if (kbinput != ERR && !meta_key && !is_cntrl_char(kbinput)) { - /* Don't stop unhandled sequences, so that people with odd - * character sets can type. */ + /* Don't stop unhandled printable sequences, so that people + * with odd character sets can type. */ if (ISSET(VIEW_MODE)) print_view_warning(); else