Package: xemacs21 / 21.4.22-14~deb8u1

10_itimer_error_with_de.dpatch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /bin/sh -e
## 10_itimer_error_with_de.dpatch by OHURA Makoto <ohura@debian.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fix `itimer timeout' error with de_DE locale.
## DP: Bug#228883

if [ $# -lt 1 ]; then
    echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
    exit 1
fi

[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"

case "$1" in
    -patch) patch -p1 ${patch_opts} < $0;;
    -unpatch) patch -R -p1 ${patch_opts} < $0;;
    *)
        echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
        exit 1;;
esac

exit 0

@DPATCH@
Index: xemacs21-21.4.22/src/device-gtk.c
===================================================================
--- xemacs21-21.4.22.orig/src/device-gtk.c	2013-11-15 14:20:09.777849429 +0000
+++ xemacs21-21.4.22/src/device-gtk.c	2013-11-15 14:20:09.777849429 +0000
@@ -54,6 +54,8 @@
 #include <bonobo.h>
 #endif
 
+#include <locale.h>
+
 Lisp_Object Vdefault_gtk_device;
 
 /* Qdisplay in general.c */
@@ -182,6 +184,9 @@
 
   speed_up_interrupts ();
 
+  /* Reset the numeric locale because gtk_init change it */
+  setlocale(LC_NUMERIC,"C");
+
   free_argc_argv (argv);
   return (Qt);
 }