[BZ #4582]
authorUlrich Drepper <drepper@redhat.com>
Wed, 22 Aug 2007 07:04:23 +0000 (07:04 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 22 Aug 2007 07:04:23 +0000 (07:04 +0000)
* debug/segfault.c: Fix typos in comments.

ChangeLog
debug/segfault.c
localedata/ChangeLog
localedata/locales/as_IN
string/strtok.c

index 733b4e4..77af3ec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-08-21  Ulrich Drepper  <drepper@redhat.com>
 
+       [BZ #4582]
+       * debug/segfault.c: Fix typos in comments.
+
        [BZ #4588]
        * stdio-common/tempnam.c: Fix comment, it is not checked that
        TMPDIR points to a writable directory.
index f141fff..413f207 100644 (file)
@@ -1,5 +1,5 @@
 /* Catch segmentation faults and print backtrace.
-   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2007
    Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
@@ -42,7 +42,7 @@
 /* Get code to possibly dump the content of all registers.  */
 #include <register-dump.h>
 
-/* We'll use tis a lot.  */
+/* We'll use this a lot.  */
 #define WRITE_STRING(s) write (fd, s, strlen (s))
 
 /* Name of the output file.  */
@@ -67,7 +67,7 @@ write_strsignal (int fd, int signal)
 
 
 /* This function is called when a segmentation fault is caught.  The system
-   is in an instable state now.  This means especially that malloc() might
+   is in an unstable state now.  This means especially that malloc() might
    not work anymore.  */
 static void
 catch_segfault (int signal, SIGCONTEXT ctx)
index d27b6d7..63114d3 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-22  Ulrich Drepper  <drepper@redhat.com>
+
+       [BZ #4557]
+       * locales/as_IN: Change <UNASSIGNED-09CE> to <U09CE>.
+
 2007-08-03  Jakub Jelinek  <jakub@redhat.com>
 
        * locales/translit_combining: Add U0141 and U0142.
index d3c779b..c61ba30 100644 (file)
@@ -596,7 +596,7 @@ order_start forward;forward;forward;forward
 <U09CC> <X689A>;<X0005>;<X0005>;IGNORE
 <U09CD> <X689C>;<X0005>;<X0005>;IGNORE
 <U09D7> <X689E>;<X0005>;<X0005>;IGNORE
-<UNASSIGNED-09CE> "<XE2E9><X6B20>";<X0005>;"<X0005><X00C0>";IGNORE
+<U09CE> "<XE2E9><X6B20>";<X0005>;"<X0005><X00C0>";IGNORE
 UNDEFINED IGNORE;IGNORE;IGNORE;%...
 
 order_end
index f45b760..9d6bb06 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (C) 1991,1996,1997,1999,2000,2001 Free Software Foundation, Inc.
+/* Copyright (C) 1991,1996,1997,1999,2000,2001,2007
+   Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -30,7 +31,7 @@ static char *olds;
        x = strtok(s, "-");             // x = "abc"
        x = strtok(NULL, "-=");         // x = "def"
        x = strtok(NULL, "=");          // x = NULL
-               // s = "abc\0-def\0"
+               // s = "abc\0=-def\0"
 */
 char *
 strtok (s, delim)