public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-04 20:32 Kaveh R. Ghazi
  2001-09-04 23:32 ` Neil Booth
                   ` (3 more replies)
  0 siblings, 4 replies; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-04 20:32 UTC (permalink / raw)
  To: gcc-patches, gcc

I got warning levels down to around 30 on solaris2.7 and 20 on irix6.
So I thought it might be worth a try to get -Werror installed in gcc.

There are some problems.  We don't want to -Werror stage1 when using
e.g. 2.95 to bootstrap because older GCCs gives many false positives
that have since been corrected.  Using 2.95 on stage1 yields over 350
warnings on the same solaris2.7 that gets just 30 in all of stage3
(and stage3 builds all languges, not just C!)

Thus IMHO, we should only enable -Werror in stage2 or later.  However
this means if you don't do a full bootstrap (e.g. cross-compiles or
building for embedded targets) then -Werror isn't in effect.  This
also means the automatic tester to powerpc won't detect regressions.

That's a big lose since in effect warning regressions become bootstrap
failures for most people.  So I'm open to suggestion on that front.

Anyway, another problem is we have to get to zero warnings before
using -Werror.  I propose doing it one module at a time.  The patch
below is a candidate which does this for rtl.o to start with.  If that
lasts for a week without major pandemonium, we can do more files.

I also added a mechanism to disable -Werror on a per-triplet basis or
per autoconf test basis.  E.g. if the HOST_PTR_PRINTF autoconf test
fails, you are guaranteed to get some format specifier warnings.  So I
automatically disabled -Werror in that case.  Also if a platform is
hopelessly broken, you can disable -Werror in config.gcc for that
triplet.

This patch is meant to solicit comments on both the approach and
whether -Werror is a good idea in the first place.  Its been
bootstrapped on solaris2.7 and I ensured that -Werror was only passed
to rtl.o in stage2 and later.

		--Kaveh

2001-09-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* Makefile.in (WERROR_FLAG, WERROR2_FLAG): New variables.
	(rtl.o): Use WERROR_FLAG.
	(STAGE2_FLAGS_TO_PASS): Pass WERROR_FLAG.

	* configure.in (gcc_AC_FUNC_PRINTF_PTR): If test fails, set
	NO_WERROR=1.
	(werror_flag): Set appropriately depending on NO_WERROR.
	
diff -rup orig/egcs-CVS20010904/gcc/Makefile.in egcs-CVS20010904/gcc/Makefile.in
--- orig/egcs-CVS20010904/gcc/Makefile.in	Fri Aug 31 15:25:25 2001
+++ egcs-CVS20010904/gcc/Makefile.in	Tue Sep  4 14:58:10 2001
@@ -89,6 +89,13 @@ BOOT_CFLAGS = -g -O2
 LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
 STRICT_WARN = -Wtraditional @strict1_warn@
 STRICT2_WARN = -Wtraditional -pedantic -Wno-long-long
+# WERROR_FLAG and WERROR2_FLAG are used for setting -Werror in stage2
+# and later passes.  We only ever set -Werror in stage>=2 so that
+# we've guaranteed that the latest gcc is being used for compilation.
+# This ensures that the latest set of warnings is used and also that
+# fixes for false positives are in place.
+WERROR_FLAG = 
+WERROR2_FLAG = @werror_flag@
 
 # This is how we control whether or not the additional warnings are applied.
 .-warn = $(STRICT_WARN)
@@ -1365,7 +1372,7 @@ rtl-error.o: rtl-error.c system.h $(RTL_
    input.h toplev.h intl.h diagnostic.h
 
 rtl.o : rtl.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) real.h $(GGC_H) errors.h
-	$(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
+	$(CC) -c $(ALL_CFLAGS) $(WERROR_FLAG) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
 
 print-rtl.o : print-rtl.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h \
     $(BASIC_BLOCK_H)
@@ -2938,6 +2945,7 @@ STAGE2_FLAGS_TO_PASS = \
 	CFLAGS="$(BOOT_CFLAGS)" \
 	LDFLAGS="$(BOOT_LDFLAGS)" \
 	WARN_CFLAGS="\$$(GCC_WARN_CFLAGS)" \
+	WERROR_FLAG="$(WERROR2_FLAG)" \
 	STRICT_WARN="$(STRICT2_WARN)" \
 	libdir=$(libdir) \
 	LANGUAGES="$(LANGUAGES)" \
diff -rup orig/egcs-CVS20010904/gcc/configure.in egcs-CVS20010904/gcc/configure.in
--- orig/egcs-CVS20010904/gcc/configure.in	Wed Aug 22 16:30:27 2001
+++ egcs-CVS20010904/gcc/configure.in	Tue Sep  4 15:24:34 2001
@@ -605,6 +605,9 @@ AC_SUBST(TARGET_GETGROUPS_T)
 gcc_AC_FUNC_VFPRINTF_DOPRNT
 gcc_AC_FUNC_STRSTR
 gcc_AC_FUNC_PRINTF_PTR
+if test $gcc_cv_func_printf_ptr = no ; then
+  NO_WERROR=1
+fi
 
 case "${host}" in
 *-*-uwin*)
@@ -2032,6 +2035,18 @@ AC_SUBST(slibdir)
 # Nothing to do for FLOAT_H, float_format already handled.
 objdir=`pwd`
 AC_SUBST(objdir)
+
+# This allows either specific platforms (via config.gcc) or specific
+# autoconf tests to override whether warnings become errors.
+AC_MSG_CHECKING(whether to enable -Werror in stage 2)
+if test x$NO_WERROR = x ; then
+  AC_MSG_RESULT(yes)
+  werror_flag=-Werror
+else
+  AC_MSG_RESULT(no)
+  werror_flag=
+fi
+AC_SUBST(werror_flag)
 
 # Process the language and host/target makefile fragments.
 ${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-05 10:39 Kaveh R. Ghazi
  2001-09-05 11:50 ` Richard Henderson
  0 siblings, 1 reply; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-05 10:39 UTC (permalink / raw)
  To: rth; +Cc: gcc-patches, gcc

 > From: Richard Henderson <rth@redhat.com>
 > 
 > On Tue, Sep 04, 2001 at 11:32:50PM -0400, Kaveh R. Ghazi wrote:
 > > That's a big lose since in effect warning regressions become bootstrap
 > > failures for most people.  So I'm open to suggestion on that front.
 > 
 > Autoconf stage1 on installed gcc version being "new enough"?
 > r~

Well, "new enough" in this case means "3.1 20010825 (experimental)"
when I put in this patch:

 > 2001-08-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 >  
 >         * fold-const.c (tree_expr_nonnegative_p): Handle *_DIV_EXPR,
 >         *_MOD_EXPR, SAVE_EXPR and NON_LVALUE_EXPR.

That patch got rid of some false positives.

I guess eventually 3.1 will be released and checking for it in stage1
would hit sometimes. :-)

--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-05 10:44 Kaveh R. Ghazi
  0 siblings, 0 replies; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-05 10:44 UTC (permalink / raw)
  To: neil; +Cc: gcc-patches, gcc

 > From: Neil Booth <neil@daikokuya.demon.co.uk>
 > 
 > Kaveh R. Ghazi wrote:-
 > 
 > > I also added a mechanism to disable -Werror on a per-triplet basis or
 > > per autoconf test basis.  E.g. if the HOST_PTR_PRINTF autoconf test
 > > fails, you are guaranteed to get some format specifier warnings.  So I
 > > automatically disabled -Werror in that case.  Also if a platform is
 > > hopelessly broken, you can disable -Werror in config.gcc for that
 > > triplet.
 > 
 > I would imagine that it would be better to do it the other way; I think
 > it is really only realistic to enable it on a per-triplet basis and
 > default to off.
 > Neil.

Oh no, I disagree.  IMHO yours is a formula for never getting it done.
I don't have access to all zillion platforms gcc supports.  This needs
to be a team effort if its to be successful, and making it the default
ensures everyone participates. :-)

--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-05 10:59 Kaveh R. Ghazi
  2001-09-05 11:17 ` Zack Weinberg
  0 siblings, 1 reply; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-05 10:59 UTC (permalink / raw)
  To: zack; +Cc: gcc-patches, gcc

 > From: Zack Weinberg <zack@codesourcery.com>
 > 
 > On Tue, Sep 04, 2001 at 11:32:50PM -0400, Kaveh R. Ghazi wrote:
 > > I got warning levels down to around 30 on solaris2.7 and 20 on irix6.
 > > So I thought it might be worth a try to get -Werror installed in gcc.
 > ...
 > > Anyway, another problem is we have to get to zero warnings before
 > > using -Werror.  I propose doing it one module at a time.  The patch
 > > below is a candidate which does this for rtl.o to start with.  If that
 > > lasts for a week without major pandemonium, we can do more files.
 > 
 > I think this is backward.  First we should get to zero warnings
 > throughout the compiler, _then_ we talk about -Werror.  If only
 > because if we do it your way, we'll be adding explicit compile rules
 > to module after module.  I don't think there's enough marginal benefit
 > from -Werror applied to a few modules, to eat that kind of complexity
 > burden in the Makefile which is already too complicated.

The problem with getting to zero is each platform is likely to have
its own special warnings stemming either from the config directory
files or from platform specific wierdness.  We simply cannot get to
zero on all platforms on all modules unless everyone makes a concerted
effort and no regressions occur.  I might very well get solaris2 down
to zero but I bet other platforms would not be zero unless someone
volunteers to look at those.  I find that highly unlikely, we've
hovered at 100-200 warnings for a year or so.  Without -Werror to
force people, regressions creep in at several per week sometimes.

I thought starting with one file would ease people in slowly.  Once we
got the whole compiler I would take out the individual rules and put
it in the .c.o rule or into GCC_WARN_CFLAGS or something.  So whatever
extra complexity added would be temporary.



 > Instead, we should be talking seriously about the remaining N
 > warnings, and what we're going to do about them.  I saw a couple of
 > patches go by for the 20-odd signed/unsigned comparison warnings in
 > combine.c, which is the majority of the remaining warnings; they
 > haven't been reviewed.
 > 
 > Next biggest offender is
 > 
 >        7 string length `???' is greater than the length `???' ISO C89
 >          compilers are required to support
 > 
 > These are more or less intractable: they come from big hairy spec
 > strings, e.g.

IIRC, these string warnings are from -pedantic, which isn't affected
by -Werror.  To make those hard errors, I think you have to use
-pedantic-errors.  (Again, IIRC.)

--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-05 12:09 Kaveh R. Ghazi
  2001-09-05 12:33 ` Zack Weinberg
  2001-09-26 16:52 ` Fergus Henderson
  0 siblings, 2 replies; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-05 12:09 UTC (permalink / raw)
  To: zack; +Cc: gcc-patches, gcc

 > From: Zack Weinberg <zack@codesourcery.com>
 > 
 > >  > Next biggest offender is
 > >  > 
 > >  >        7 string length `???' is greater than the length `???' ISO C89
 > >  >          compilers are required to support
 > >  > 
 > >  > These are more or less intractable: they come from big hairy spec
 > >  > strings, e.g.
 > > 
 > > IIRC, these string warnings are from -pedantic, which isn't affected
 > > by -Werror.  To make those hard errors, I think you have to use
 > > -pedantic-errors.  (Again, IIRC.)
 > 
 > Not true.  -Werror turns _all_ warnings into errors.
 > zw

Hmm, I tested it in 3.1 and 2.95.3 and you're right.  Well, that
certainly puts a monkey wrench into my plan.

Since these are intractable as you say, what if we applied the
__extension__ keyword to these strings?  Since they are from -pedantic
that would eliminate the warning, and thus the hard error when using
-Werror, right?

Separately, perhaps we want something like __extension__ applied to
regular warnings too.  E.g. how about a __nowarn__ keyword that
temporarily does "inhibit_warnings = 1" for the statement in question?

		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-05 12:52 Kaveh R. Ghazi
  2001-09-05 15:06 ` Neil Booth
  2001-09-05 19:09 ` Zack Weinberg
  0 siblings, 2 replies; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-05 12:52 UTC (permalink / raw)
  To: zack; +Cc: gcc-patches, gcc

 > From: Zack Weinberg <zack@codesourcery.com>
 > 
 > On Wed, Sep 05, 2001 at 03:09:04PM -0400, Kaveh R. Ghazi wrote:
 > >  > 
 > >  > Not true.  -Werror turns _all_ warnings into errors.
 > >  > zw
 > > 
 > > Hmm, I tested it in 3.1 and 2.95.3 and you're right.  Well, that
 > > certainly puts a monkey wrench into my plan.
 > > 
 > > Since these are intractable as you say, what if we applied the
 > > __extension__ keyword to these strings?  Since they are from -pedantic
 > > that would eliminate the warning, and thus the hard error when using
 > > -Werror, right?
 > 
 > No, the error issues from the tokenizer, which doesn't know anything
 > about __extension__, nor should it (it would have to understand the
 > expression grammar then).

Er, I just tried it and it works...


 > These are not warnings we want to ignore, either.  Those strings
 > really are too long to be safe.
 > Please, can we stop trying to paper over the problems and _fix_ them?
 > zw

Well that's a separate question.  I don't know of any way short of
rewriting the whole specs stuff that Neil was suggesting.  I'm not
generally in favor of papering over things, but at the same time I
don't think -Werror should necessarily bottleneck on a specs
implementation rewrite if a simple workaround is available and the
long term solution is on someone else's todo list.

		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror? (& sample patch to do it)
@ 2001-09-05 20:36 lucier
  0 siblings, 0 replies; 29+ messages in thread
From: lucier @ 2001-09-05 20:36 UTC (permalink / raw)
  To: gcc-patches, gcc; +Cc: lucier

Zack Weinberg wrote:

> The reason I'm not convinced that -Werror would be a good idea even
> after we get to zero warnings, is that the existing set of warnings
> have been around for a very long time because they're both harmless
> and intractable.  (Harmless, in the sense that I am fairly sure the
> code is in all cases correct, just pulling dubious tricks.)

I don't think this is true, see, e.g., today's warning on sparc-sun-solaris28:

../../gcc/cp/class.c:6770: warning: int format, different type arg (arg 3)

These types of problems (e.g., printing a HOST_WIDE_INT as an int) are added
all the time, quite often in debug code, and I don't think the code is correct.

Brad Lucier

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror? (& sample patch to do it)
@ 2001-09-05 20:54 Dan Nicolaescu
  2001-09-06  8:44 ` Loïc Joly
  0 siblings, 1 reply; 29+ messages in thread
From: Dan Nicolaescu @ 2001-09-05 20:54 UTC (permalink / raw)
  To: gcc, gcc-patches

What about changing -Werror to be a little bit more fine grained: so
it would be possible to specify exactly  which warnings would be
errors. 

Something like -Werror=LIST_OF_WARNINGS_THAT_SHOULD_GENERATE_ERRORS
or -WWARNING_NAME=error

Then we could turn on -Werror for all the un-controversial warnings,
that don't generate false positives, like -Wformat,
-Wstrict-prototypes, etc. 

(currently we have fine grained control for warnings, but not for 
-Werror). 

Just my 2 cents

        --dan

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror? (& sample patch to do it)
@ 2001-09-06  9:16 dewar
  0 siblings, 0 replies; 29+ messages in thread
From: dewar @ 2001-09-06  9:16 UTC (permalink / raw)
  To: Loic.Joly, dann; +Cc: gcc-patches, gcc

<<Well, the control is not that fine grained, even for warnings, since is
is not possible to disable a warning locally, but only for a full
translation unit.
>>

In GNAT, we have a pragma Warnings (On|Off) which can be applied locally
and is very useful for eliminating "OK" warnings (in GNAT we require
compilation with -gnatwe which is the equivalent of -Werror.

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-07 18:39 Kaveh R. Ghazi
  2001-09-07 19:49 ` Zack Weinberg
  0 siblings, 1 reply; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-07 18:39 UTC (permalink / raw)
  To: zack; +Cc: gcc-patches, gcc

 > From: Zack Weinberg <zack@codesourcery.com>
 > 
 > > I thought starting with one file would ease people in slowly.  Once we
 > > got the whole compiler I would take out the individual rules and put
 > > it in the .c.o rule or into GCC_WARN_CFLAGS or something.  So whatever
 > > extra complexity added would be temporary.
 > 
 > (There are cleaner ways to do the same thing, e.g. look at the hack
 > used to avoid -pedantic for the non-C front ends.)
 > zw

I suppose you're referring to the following from Makefile.in?

 > # This is how we control whether or not the additional warnings are applied.
 > .-warn = $(STRICT_WARN)
 > GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn)

I can't figure this out, can you please explain it?  How does it work?

		Thanks,
		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread
* Re: RFC: should we use -Werror?  (& sample patch to do it)
@ 2001-09-07 18:47 Kaveh R. Ghazi
  0 siblings, 0 replies; 29+ messages in thread
From: Kaveh R. Ghazi @ 2001-09-07 18:47 UTC (permalink / raw)
  To: zack; +Cc: gcc-patches, gcc

 > From: Zack Weinberg <zack@codesourcery.com>
 > 
 > On Wed, Sep 05, 2001 at 03:51:59PM -0400, Kaveh R. Ghazi wrote:
 > >  > These are not warnings we want to ignore, either.  Those strings
 > >  > really are too long to be safe.
 > >  > Please, can we stop trying to paper over the problems and _fix_ them?
 > > 
 > > Well that's a separate question.  I don't know of any way short of
 > > rewriting the whole specs stuff that Neil was suggesting.  I'm not
 > > generally in favor of papering over things, but at the same time I
 > > don't think -Werror should necessarily bottleneck on a specs
 > > implementation rewrite if a simple workaround is available and the
 > > long term solution is on someone else's todo list.
 > 
 > You and I seem to be coming at this from different angles.  I am not
 > yet convinced that -Werror is actually a good idea, even if we *did*
 > have zero warnings across all targets, which we don't.  I would like
 > to discuss how we can get to zero warnings, instead of how we should
 > enforce its staying that way once we do get there.

Dicussing whether -Werror is a good idea is part of why I posted an
RFC.  I'm not wedded to -Werror, but I would like some way of at least
not getting more warning regressions every week.  I previously
suggested incorporating the output from contrib/warn_summary into the
regression tester.  But not having seen that happen (and not having
the time myself) I thought we could take another approach.


 > The reason I'm not convinced that -Werror would be a good idea even
 > after we get to zero warnings, is that the existing set of warnings
 > have been around for a very long time because they're both harmless
 > and intractable.  (Harmless, in the sense that I am fairly sure the
 > code is in all cases correct, just pulling dubious tricks.)  I feel
 > it's likely that, even if we do solve all of them, we will get more
 > code in the same category - causes harmless, intractable warnings -
 > and then there will be much finger-pointing and raging and gnashing
 > of teeth, should we enforce zero warnings with -Werror.
 > 
 > I'd like to make a comparison to the argument we had over whether
 > patches that exposed bugs elsewhere, should be reverted.  All the
 > warnings in combine.c happen because someone decided mode_bitsize
 > should be unsigned.  They were probably right.  With -Werror, the
 > patch that made it unsigned would have broken bootstrap, and then
 > we would have had an endless unproductive flamewar about it.
 > zw

No with -Werror, the patch wouldn't have been accepted in the first
place because the submitter couldn't have said they were able to
bootstrap with it.  This may have encouraged them to fix the new
warnings too along with their patch submission.  Think of it like
ENABLE_CHECKING failures.  Previously we would have allowed in a patch
which quietly introduced bugs.  Now with ENABLE_CHECKING on by
default, you can't bootstrap your patch if it doesn't pass these
internal consistency checks.  Using -Werror would do an analogous
thing, encourage everyone to not introduce new warnings.

		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Qwest Internet Solutions

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2001-09-26 17:05 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-04 20:32 RFC: should we use -Werror? (& sample patch to do it) Kaveh R. Ghazi
2001-09-04 23:32 ` Neil Booth
2001-09-05  0:27 ` Richard Henderson
2001-09-05  6:57 ` Geoff Keating
2001-09-05 10:35 ` Zack Weinberg
2001-09-05 10:40   ` Neil Booth
2001-09-05 10:54     ` Driver rewrite... (was Re: RFC: should we use -Werror?) Zack Weinberg
2001-09-05 11:12       ` Neil Booth
2001-09-05 12:31         ` Zack Weinberg
2001-09-05 10:39 RFC: should we use -Werror? (& sample patch to do it) Kaveh R. Ghazi
2001-09-05 11:50 ` Richard Henderson
2001-09-05 10:44 Kaveh R. Ghazi
2001-09-05 10:59 Kaveh R. Ghazi
2001-09-05 11:17 ` Zack Weinberg
2001-09-05 12:09 Kaveh R. Ghazi
2001-09-05 12:33 ` Zack Weinberg
2001-09-07 10:10   ` Marc Espie
2001-09-26 16:52 ` Fergus Henderson
2001-09-26 17:05   ` Joseph S. Myers
2001-09-05 12:52 Kaveh R. Ghazi
2001-09-05 15:06 ` Neil Booth
2001-09-05 19:09 ` Zack Weinberg
2001-09-05 20:36 lucier
2001-09-05 20:54 Dan Nicolaescu
2001-09-06  8:44 ` Loïc Joly
2001-09-06  9:16 dewar
2001-09-07 18:39 Kaveh R. Ghazi
2001-09-07 19:49 ` Zack Weinberg
2001-09-07 18:47 Kaveh R. Ghazi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).