Dr. Werner Fink 2012-10-05 12:13:26 +00:00 committed by Git OBS Bridge
parent f7f16e286e
commit 0cde9b1bda
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Oct 5 12:03:38 UTC 2012 - werner@suse.de
- Add workaround into emacs starter script for gtk/gstreamer bug
which overrides the locale
-------------------------------------------------------------------
Tue Sep 18 12:07:26 UTC 2012 - werner@suse.de

View File

@ -425,6 +425,10 @@ cat > %{buildroot}/usr/bin/emacs <<-"EOF"
#!/bin/bash
# Possible values are nox, gtk, or x11
: ${EMACS_TOOLKIT:=gtk}
if test "$EMACS_TOOLKIT" = gtk; then
LC_NUMERIC=POSIX
export LC_NUMERIC
fi
if test -e ${0}-${EMACS_TOOLKIT} ; then
exec -a ${0} ${0}-${EMACS_TOOLKIT} ${1+"$@"}
elif test -e ${0}-x11 ; then