0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-12 14:13:36 +00:00
termux-packages/packages/sc-im/cmds_normal.c.patch
2023-01-12 21:20:27 +00:00

25 lines
815 B
Diff

diff -uNr sc-im-0.7.0/src/cmds_normal.c sc-im-0.7.0.mod/src/cmds_normal.c
--- sc-im-0.7.0/src/cmds_normal.c 2017-12-13 19:48:59.000000000 +0200
+++ sc-im-0.7.0.mod/src/cmds/cmds_normal.c 2019-01-30 21:58:28.431965657 +0200
@@ -89,6 +89,11 @@
* \param[in] buf
* \return none
*/
+#ifdef USELOCALE
+#include <locale.h>
+#include <langinfo.h>
+#endif
+
void do_normalmode(struct block * buf) {
struct roman * roman = session->cur_doc;
struct sheet * sh = roman->cur_sh;
@@ -227,8 +232,6 @@
case ctl('d'): // set date format using current locate D_FMT format
{
#ifdef USELOCALE
- #include <locale.h>
- #include <langinfo.h>
char * loc = NULL;
char * f = NULL;
loc = setlocale(LC_TIME, "");