- nano.c:do_suspend() - Fix untranslated message (David Benbennick)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1454 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
e9b5c6fe90
commit
7641708cb6
|
@ -34,6 +34,8 @@ CVS code
|
||||||
- Add regfree() to quote regex (David Benbennick).
|
- Add regfree() to quote regex (David Benbennick).
|
||||||
- Only copy previous indent if AUTOINDENT is set (David
|
- Only copy previous indent if AUTOINDENT is set (David
|
||||||
Benbennick).
|
Benbennick).
|
||||||
|
do_suspend()
|
||||||
|
- Fix untranslated message (David Benbennick).
|
||||||
do_wrap()
|
do_wrap()
|
||||||
- Fix isspace() call to operate on int.
|
- Fix isspace() call to operate on int.
|
||||||
help_init()
|
help_init()
|
||||||
|
|
2
nano.c
2
nano.c
|
@ -2823,7 +2823,7 @@ RETSIGTYPE handle_hupterm(int signal)
|
||||||
RETSIGTYPE do_suspend(int signal)
|
RETSIGTYPE do_suspend(int signal)
|
||||||
{
|
{
|
||||||
endwin();
|
endwin();
|
||||||
printf("\n\n\n\n\nUse \"fg\" to return to nano\n");
|
printf("\n\n\n\n\n%s\n", _("Use \"fg\" to return to nano"));
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
|
||||||
/* Restore the terminal settings for the disabled keys */
|
/* Restore the terminal settings for the disabled keys */
|
||||||
|
|
Loading…
Reference in New Issue