Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 20 Feb 2001 17:40:18 +0000 (17:40 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 20 Feb 2001 17:40:18 +0000 (17:40 +0000)
2001-02-20  Ulrich Drepper  <drepper@redhat.com>

* libio/iofwide.c: Remove fwide alias.

ChangeLog
PROJECTS
libio/iofwide.c

index a85f5d546718844b72d319c3419c60aceed97708..9b9f2e945ce201d94541978770681b8c1aee04bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-20  Ulrich Drepper  <drepper@redhat.com>
+
+       * libio/iofwide.c: Remove fwide alias.
+
 2001-02-20  Andreas Jaeger  <aj@suse.de>
 
        * iconvdata/Makefile (tests): Only run mtrace-tst-loading if perl
index b15b7110d266aa012727ef712aef70ed07e646ec..0d4b744f69b77d750d2ae24533b7de5754068c3a 100644 (file)
--- a/PROJECTS
+++ b/PROJECTS
@@ -37,8 +37,7 @@ contact <bug-glibc@gnu.org>.
      for the current status (of course better use a mirror of ftp.gnu.org).
 
 
-[ 6] Write `long double' versions of the math functions.  This should be
-     done in collaboration with the NetBSD and FreeBSD people.
+[ 6] Write `long double' versions of the math functions.
 
      The libm is in fact fdlibm (not the same as in Linux libc 5).
 
@@ -124,6 +123,9 @@ contact <bug-glibc@gnu.org>.
 [19] A user-level STREAMS implementation should be available if the
      kernel does not provide the support.
 
+***  This is a much lower priority job now that STREAMS are optional in
+     XPG.
+
 
 [20] More conversion modules for iconv(3).  Existing modules should be
      extended to do things like transliteration if this is wanted.
@@ -142,10 +144,10 @@ contact <bug-glibc@gnu.org>.
        used, only offsets.
      OR
        if POSIX shared memory is available use a named shared memory
-       region to put the data is
+       region to put the data in
      - each program using NSS functionality tries to open the file
        with the data.
-     - by checking some timestamp (which the nscd renew frequently)
+     - by checking some timestamp (which the nscd renews frequently)
        the programs can test whether the file is still valid
      - if the file is valid look through the nscd and locate the
        appropriate hash table for the database and lookup the data.
@@ -155,7 +157,7 @@ contact <bug-glibc@gnu.org>.
 
 
 [22] It should be possible to have the information gconv-modules in
-     a simple database which is faster to access.  Using libdb is probably
+     a simple cache which is faster to access.  Using libdb is probably
      overkill and loading it would probably be slower than reading the
      plain text file.  But a file format with a simple hash table and
      some data it points to should be fine.  Probably it should be
@@ -166,7 +168,7 @@ contact <bug-glibc@gnu.org>.
            && stat ("gconv-modules.db", &std) == 0
            && stp.st_mtime < std.st_mtime)
          {
-           ... use the database ...
+           ... use the cache ...
          {
        else
          {
index 2e2854aa624a308e59e5983f8ac51297e80c7854..72a7489ad1dfe6d5d05b5d195d2f703345be76a3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
    This file is part of the GNU IO Library.
 
    This library is free software; you can redistribute it and/or
@@ -204,10 +204,6 @@ _IO_fwide (fp, mode)
   return mode;
 }
 
-#ifdef weak_alias
-weak_alias (_IO_fwide, fwide)
-#endif
-
 
 static enum __codecvt_result
 do_out (struct _IO_codecvt *codecvt, __mbstate_t *statep,