aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2014-08-27 17:50:36 -0700
committerPaul Eggert2014-08-27 17:50:36 -0700
commitcbe070d11440419e271aba723aa42d834395f2cd (patch)
treefdacca4601ce772b2f25ddcebda9c643cb151252 /src
parent9bac5fd91f5012a682be13e16561671f0f01c941 (diff)
downloademacs-cbe070d11440419e271aba723aa42d834395f2cd.tar.gz
emacs-cbe070d11440419e271aba723aa42d834395f2cd.zip
* sysdep.c (LC_COLLATE, LC_COLLATE_MASK): Give individual defaults.
Fixes: debbugs:18051
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/sysdep.c5
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a7c8cb59a0f..e79cef6a8a4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12014-08-28 Paul Eggert <eggert@cs.ucla.edu>
2
3 * sysdep.c (LC_COLLATE, LC_COLLATE_MASK): Give individual defaults
4 (Bug#18051).
5
12014-08-27 Eli Zaretskii <eliz@gnu.org> 62014-08-27 Eli Zaretskii <eliz@gnu.org>
2 7
3 * syntax.c (scan_lists): Don't examine positions before BEGV. 8 * syntax.c (scan_lists): Don't examine positions before BEGV.
diff --git a/src/sysdep.c b/src/sysdep.c
index d50e2398a53..a336a1e9058 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3601,8 +3601,11 @@ system_process_attributes (Lisp_Object pid)
3601 3601
3602# if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE 3602# if defined HAVE_NEWLOCALE || defined HAVE_SETLOCALE
3603# include <locale.h> 3603# include <locale.h>
3604# else 3604# endif
3605# ifndef LC_COLLATE
3605# define LC_COLLATE 0 3606# define LC_COLLATE 0
3607# endif
3608# ifndef LC_COLLATE_MASK
3606# define LC_COLLATE_MASK 0 3609# define LC_COLLATE_MASK 0
3607# endif 3610# endif
3608# ifndef HAVE_NEWLOCALE 3611# ifndef HAVE_NEWLOCALE