* observer.sh: Set LANG/LC_ALL to C, not c.

This commit is contained in:
Andreas Schwab 2009-03-29 13:36:27 +00:00
parent 3481f392b0
commit c2c8d75b34
2 changed files with 23 additions and 19 deletions

View File

@ -1,3 +1,7 @@
2009-03-29 Andreas Schwab <schwab@linux-m68k.org>
* observer.sh: Set LANG/LC_ALL to C, not c.
2009-03-28 Kevin Buettner <kevinb@redhat.com>
* mn10300-tdep.c (mn10300_gdbarch_init): For mn10300, by default,
@ -174,7 +178,7 @@
(gdb_completion_word_break_characters): Implement new function.
* top.c (init_main): Set rl_completion_word_break_hook to
gdb_completion_word_break_characters.
2009-03-25 Pierre Muller <muller@ics.u-strasbg.fr>
@ -275,7 +279,7 @@
* breakpoint.c (disable_breakpoints_in_unloaded_shlib): Use
solib_contains_address_p instead of searching.
2009-03-23 Tom Tromey <tromey@redhat.com>
* charset.c (ICONV_CONST) <PHONY_ICONV>: Define.
@ -290,7 +294,7 @@
(LookupPrivilegeValueA): Ditto.
(OpenProcessToken): Ditto.
(AdjustTokenPrivileges): Rename and define placeholder for address of
dynamically loaded function.
dynamically loaded function.
(LookupPrivilegeValueA): Ditto.
(OpenProcessToken): Ditto.
(set_process_privilege): Remove check for loaded functions.
@ -669,8 +673,8 @@
(INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
(INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
* gdb_obstack.h (obstack_grow_wstr): New define.
* gdb_wchar.h: New file.
* defs.h: Include it.
* gdb_wchar.h: New file.
* defs.h: Include it.
2009-03-20 Tom Tromey <tromey@redhat.com>
Jan Kratochvil <jan.kratochvil@redhat.com>
@ -969,19 +973,19 @@
Include token in ^running notification for CLI commands.
* mi/mi-main.c (mi_execute_command): Set current_token here.
(mi_cmd_execute): Do not set current_token here.
* mi/mi-main.c (mi_execute_command): Set current_token here.
(mi_cmd_execute): Do not set current_token here.
2009-03-12 Vladimir Prus <vladimir@codesourcery.com>
Fix MI timings.
* mi/mi-main.c (mi_print_timing_maybe): New.
(captured_mi_execute_command): Simplify. Output timings to
CLI commands, too.
(mi_execute_async_cli_command): Do not print timings.
* mi/mi-main.h (mi_print_timing_maybe): Declare.
* mi/mi-interp.c (mi_on_normal_stop): Call mi_print_timing_maybe.
* mi/mi-main.c (mi_print_timing_maybe): New.
(captured_mi_execute_command): Simplify. Output timings to
CLI commands, too.
(mi_execute_async_cli_command): Do not print timings.
* mi/mi-main.h (mi_print_timing_maybe): Declare.
* mi/mi-interp.c (mi_on_normal_stop): Call mi_print_timing_maybe.
2009-03-12 Jerome Guitton <guitton@adacore.com>
@ -1019,8 +1023,8 @@
* solib.c (solib_contains_address_p): New function.
(solib_name_from_address): Use it.
* printcmd.c (display_uses_solib_p): Use it.
* solib.h (solib_contains_address_p): Declare it.
* solib.h (solib_contains_address_p): Declare it.
2009-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
* varobj.c (free_variable): Call value_free.
@ -1060,7 +1064,7 @@
* stack.c (print_frame): Likewise.
* solib.c: Rename.
* solib.h: Rename.
2009-03-05 Paul Pluzhnikov <ppluzhnikov@google.com>
* printcmd.c (do_one_display): Reparse exp_string.
@ -1069,7 +1073,7 @@
(_initialize_printcmd): Add observer.
* solib.c (no_shared_libraries): Swap order of calls to
clear_solib and objfile_purge_solibs.
2009-03-05 Joel Brobecker <brobecker@adacore.com>
Implement the target-specific part of Ada tasking support

View File

@ -2,8 +2,8 @@
# Make certain that the script is not running in an internationalized
# environment.
LANG=c ; export LANG
LC_ALL=c ; export LC_ALL
LANG=C ; export LANG
LC_ALL=C ; export LC_ALL
if test $# -ne 3
then