per Junichi Uekawa's patch in Debian's version of nano, call setlocale()
outside the ENABLE_NLS #ifdef, since UTF-8 support (specifically, the wide character handling functions it needs) won't work properly if the locale isn't set, whether NLS is enabled or not git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1865 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
1536f8613d
commit
ad1fd0d968
|
@ -88,6 +88,9 @@ CVS code -
|
||||||
- Move the reset_cursor() call to the beginning of the main
|
- Move the reset_cursor() call to the beginning of the main
|
||||||
input loop, and remove the apparently unnecessary wrefresh()
|
input loop, and remove the apparently unnecessary wrefresh()
|
||||||
call. (David Benbennick)
|
call. (David Benbennick)
|
||||||
|
- Call setlocale() outside the ENABLE_NLS #ifdef, since UTF-8
|
||||||
|
support won't work properly if the locale isn't set, whether
|
||||||
|
NLS is enabled or not. (Junichi Uekawa)
|
||||||
- nano.h:
|
- nano.h:
|
||||||
- Reassign the key for full justification to Ctrl-U, for
|
- Reassign the key for full justification to Ctrl-U, for
|
||||||
compatibility with the current version of Pico. (DLR)
|
compatibility with the current version of Pico. (DLR)
|
||||||
|
|
|
@ -3094,8 +3094,8 @@ int main(int argc, char *argv[])
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_NLS
|
|
||||||
setlocale(LC_ALL, "");
|
setlocale(LC_ALL, "");
|
||||||
|
#ifdef ENABLE_NLS
|
||||||
bindtextdomain(PACKAGE, LOCALEDIR);
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
||||||
textdomain(PACKAGE);
|
textdomain(PACKAGE);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue