nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 6ca01b1cd8a4dc8ef283f1723a443330a96cfa2f
parent 8e207bf03f63d7cc858cd33e228ee92b08d7ab65
Author: Chris Allegretta <chrisa@asty.org>
Date:   Fri, 29 Mar 2002 15:38:17 +0000

- nano.c: - Move the termios things in main() up to signal_init(), where they should probably be anyway


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1157 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Mnano.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nano.c b/nano.c @@ -2976,6 +2976,8 @@ int main(int argc, char *argv[]) filename = mallocstrcpy(filename, argv[optind]); } + signal_init(); + /* now ncurses init stuff... */ initscr(); savetty(); @@ -2990,7 +2992,6 @@ int main(int argc, char *argv[]) init_help_msg(); help_init(); #endif - signal_init(); #ifdef DEBUG fprintf(stderr, _("Main: set up windows\n"));