comp.lang.ada
 help / color / mirror / Atom feed
From: stt@houdini.camb.inmet.com (Tucker Taft)
Subject: Re: Software landmines (was: Why C++ is successful)
Date: 1998/08/19
Date: 1998-08-19T00:00:00+00:00	[thread overview]
Message-ID: <ExwxsA.EEL.0.-s@inmet.camb.inmet.com> (raw)
In-Reply-To: 6rd27s$ffi$1@nnrp1.dejanews.com

adam@irvine.com wrote:
: ...
: Anyway, here's my main question:  Is it desirable to expand the syntax of
: "exit" to cover cases like this?  I think it might be nice.  I'm thinking that
: code like this could look something like:

:     block_to_do_stuff:
:     begin
:         blah-blah-blah;
:         exit block_to_do_stuff when error-condition-1;
:         keep-going;
:         exit block_to_do_stuff when error-condition-2;
:         still-keep-going;
:         exit block_to_do_stuff when error-condition-3;
:         everythings-still-fine-keep-going;
:         etc.
:     end block_to_do_stuff;

: I think one of the Ada 9X proposals actually had a feature like this, but
: unfortunately it also changed the semantics of "exit" in a way that would
: change the meanings of a lot of Ada 83 code.  Probably, that's why it was
: dropped from the final Ada 95 definition.  

The Ada 9x proposal was "upward consistent" in that it didn't change the 
meaning of any existing programs to a new legal meaning, but it did make 
some of them illegal (those that involved exits from blocks nested in loops,
I believe).

: ... But I think that the exit-block
: feature in my example would be a very useful addition to the next version
: of Ada.  (I'd define it so that this use of "exit" requires a block name,
: so that the semantics of "unnamed" exit statements are unchanged; that way,
: there wouldn't be any upward compatibility problems.)

We also considered this proposal.  Basically, we couldn't find a
"clean" solution that looked like it wasn't just an add-on rather
than something built in from the beginning.  Also, the problem being
solved is relatively minor, and we had bigger fish to fry (mix those
metaphors liberally, please).

: So do the rest of you think it's a useful enough feature to consider adding
: to Ada?

If there were a solution that treated loops and blocks symmetrically,
that would be nice.  But a proposal that only allows exiting from
unnamed loops, while disallowing exiting from unnamed blocks, is
a kludge.  I would prefer something which allowed an unnamed "exit" to be
legal only if there were exactly one block or loop enclosing the point.
If there were more than one, then the exit would have to be named.
This way, adding another level of block or loop to an existing program with
an unnamed exit would never result in an exit going to the wrong place,
but it might result in the program becoming illegal.  This avoids a kind
of "Beaujolais" effect for unnamed exit statements (the "Beaujolais" 
effect is a case where adding or removing a declaration from a "used"
package would change the meaning of a program from one legal interpretation
to another -- Ada 95 doesn't have them, Ada 83 had very few (all obscure),
"used" C++ namespaces have them for sure).

The general Ada principle is to require that the programmer write more
if that will help to make the meaning clear to the reader.  (Note that
sometimes writing *less* makes things clearer to the reader.
The key is to keep the signal to noise ratio high.)  

Unnamed exits should be limited to cases where there is no ambiguity, 
especially if they can exit multiple kinds of constructs.  The C situation is
bad news, where a "break" is used to exit both switch and loop,
and there is no "named" version of it.  I have seen plenty of bugs
where a break was meant to exit a loop, but really only exited the
nearest enclosing switch, or vice-versa.

: 				-- Adam

--
-Tucker Taft   stt@inmet.com   http://www.inmet.com/~stt/
Intermetrics, Inc.  Burlington, MA  USA
An AverStar Company




  reply	other threads:[~1998-08-19  0:00 UTC|newest]

Thread overview: 836+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-08-06  0:00 Why C++ is successful Robert Dewar
1998-08-07  0:00 ` Jason Stokes
1998-08-08  0:00   ` Robert Dewar
1998-08-10  0:00     ` Robert I. Eachus
1998-08-11  0:00     ` n
1998-08-12  0:00       ` Why C++ is successful? Robert I. Eachus
1998-08-12  0:00         ` Joe Gwinn
1998-08-13  0:00           ` Larry Kilgallen
1998-08-14  0:00           ` Robert Dewar
1998-08-14  0:00             ` Bob Munck
1998-08-16  0:00               ` Robert Dewar
1998-08-14  0:00             ` nasser
1998-08-16  0:00               ` Chris Morgan
1998-08-17  0:00               ` asilvant
1998-08-17  0:00             ` Robert I. Eachus
1998-08-13  0:00         ` Bob Munck
1998-08-14  0:00       ` Why C++ is successful Robert Dewar
     [not found]         ` <35D455AC.9225EAA7@hercii.mar.lmco.com>
1998-08-14  0:00           ` Robert L. Spooner
1998-08-10  0:00   ` Darren New
1998-08-07  0:00 ` harald.mueller
1998-08-07  0:00   ` Robert Dewar
1998-08-08  0:00     ` Patrick Logan
1998-08-07  0:00   ` Brian Rogoff
1998-08-07  0:00     ` Timothy Welch
1998-08-08  0:00       ` Robert Dewar
1998-08-08  0:00         ` Phlip
1998-08-08  0:00         ` Larry Elmore
1998-08-08  0:00         ` Jeffrey C. Dege
1998-08-08  0:00           ` Patrick Logan
1998-08-10  0:00           ` Laurent GUERBY
1998-08-12  0:00             ` Andy Ward
1998-08-12  0:00               ` Matt Kennel
1998-08-14  0:00               ` Robert Dewar
1998-08-13  0:00                 ` nasser
1998-08-19  0:00                   ` Don Harrison
1998-08-14  0:00                 ` Ell
1998-08-17  0:00                   ` Robert I. Eachus
1998-08-17  0:00                     ` Patrick Logan
1998-08-18  0:00                       ` Samuel Tardieu
1998-08-25  0:00                       ` Optimizing recursion (was Re: Why C++ is successful) Robert I. Eachus
1998-08-25  0:00                         ` Darren New
1998-08-26  0:00                           ` Aaro Koskinen
1998-08-26  0:00                           ` Robert I. Eachus
1998-08-26  0:00                           ` Martin Tom Brown
     [not found]                       ` <EACHUS.98Aug25165110@s <6s43nq$m31$1@berlin.infomatch.com>
1998-08-27  0:00                         ` Constants vs Functions (was Re: Optimizing recursion...) Robert I. Eachus
1998-08-27  0:00                       ` Ray Blaak
1998-08-14  0:00                 ` Why C++ is successful Jean-Pierre Rosen
1998-08-14  0:00                   ` Robert Martin
1998-08-16  0:00                     ` Robert Dewar
1998-08-16  0:00                       ` Robert Martin
1998-08-16  0:00                       ` Rick Smith
1998-08-17  0:00                         ` Robert Dewar
1998-08-17  0:00                           ` Rick Smith
1998-08-15  0:00                   ` Patrick Doyle
1998-08-15  0:00                     ` Jean-Pierre Rosen
1998-08-16  0:00                       ` Patrick Doyle
1998-08-16  0:00                       ` Robert Dewar
1998-08-17  0:00                         ` Jean-Pierre Rosen
1998-08-15  0:00                   ` Mr Ada
1998-08-16  0:00                     ` Robert Dewar
1998-08-16  0:00                   ` Robert Dewar
1998-08-14  0:00                 ` Patrick Doyle
1998-08-16  0:00                   ` Robert Dewar
1998-08-16  0:00                     ` Patrick Doyle
1998-08-18  0:00                     ` Martin Tom Brown
1998-08-16  0:00                   ` Robert Dewar
1998-08-16  0:00                     ` Patrick Doyle
1998-08-14  0:00                 ` Software landmines (was: Why C++ is successful) dennison
1998-08-15  0:00                   ` Thaddeus L. Olczyk
1998-08-16  0:00                   ` Jay Martin
1998-08-17  0:00                     ` Robert Dewar
1998-08-16  0:00                   ` Robert Dewar
1998-08-17  0:00                     ` dennison
1998-08-18  0:00                       ` adam
1998-08-19  0:00                         ` Tucker Taft [this message]
1998-08-19  0:00                           ` adam
1998-08-19  0:00                       ` ell
1998-08-19  0:00                         ` Charles Hixson
1998-08-19  0:00                         ` adam
1998-08-19  0:00                           ` Dan Higdon
1998-08-20  0:00                             ` adam
1998-08-20  0:00                               ` Dan Higdon
1998-08-20  0:00                               ` Software landmines (loops) Nick Leaton
1998-08-30  0:00                                 ` Matthew Heaney
1998-08-30  0:00                                   ` Robert Martin
1998-08-30  0:00                                     ` Charles Hixson
1998-08-31  0:00                                       ` Robert I. Eachus
1998-08-31  0:00                                     ` dennison
1998-08-31  0:00                                       ` Robert Martin
1998-09-01  0:00                                         ` Matthew Heaney
1998-09-06  0:00                                           ` Charles Hixson
1998-09-06  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                       ` Andrew Reilly
1998-09-01  0:00                                         ` dewarr
1998-09-01  0:00                                         ` dennison
1998-09-01  0:00                                           ` Which wastes more time? (Was Re: Software landmines (loops)) Robert Huffman
1998-09-02  0:00                                             ` Gerry Quinn
1998-09-02  0:00                                               ` Jerry van Dijk
1998-09-04  0:00                                                 ` Loryn Jenkins
1998-09-04  0:00                                                   ` Ell
1998-09-05  0:00                                                     ` Loryn Jenkins
1998-09-04  0:00                                                       ` Ell
1998-09-05  0:00                                                       ` Ell
1998-09-05  0:00                                                         ` Loryn Jenkins
1998-09-05  0:00                                                           ` Robert Martin
1998-09-06  0:00                                                             ` Loryn Jenkins
1998-09-05  0:00                                                               ` Robert Martin
1998-09-06  0:00                                                                 ` Loryn Jenkins
1998-09-06  0:00                                                                   ` Robert Martin
1998-09-07  0:00                                                                     ` Loryn Jenkins
1998-09-06  0:00                                                                       ` Robert Martin
1998-09-08  0:00                                                                         ` Loryn Jenkins
1998-09-06  0:00                                                               ` Charles Hixson
1998-09-07  0:00                                                                 ` Loryn Jenkins
1998-09-07  0:00                                                               ` Andrew Reilly
1998-09-06  0:00                                                                 ` Biju Thomas
1998-09-08  0:00                                                                 ` Loryn Jenkins
1998-09-09  0:00                                                               ` Paolo F. Cantoni
1998-09-10  0:00                                                                 ` Loryn Jenkins
1998-09-11  0:00                                                                   ` Paolo F. Cantoni
1998-09-12  0:00                                                                     ` Loryn Jenkins
1998-09-05  0:00                                                           ` Patrick Logan
1998-09-09  0:00                                                             ` Paolo F. Cantoni
1998-09-09  0:00                                                               ` Patrick Logan
1998-09-11  0:00                                                                 ` Paolo F. Cantoni
     [not found]                                                       ` <35f48276.90997557@news.erols.com <35F42CAC.6F566DC7@s054.aone.net.au>
1998-09-07  0:00                                                         ` Patrick Doyle
1998-09-08  0:00                                                           ` Loryn Jenkins
1998-09-08  0:00                                                             ` Patrick Doyle
1998-09-09  0:00                                                               ` Loryn Jenkins
1998-09-08  0:00                                                                 ` Patrick Doyle
1998-09-10  0:00                                                                   ` Loryn Jenkins
1998-09-09  0:00                                                                     ` Patrick Doyle
1998-09-11  0:00                                                                       ` Loryn Jenkins
1998-09-11  0:00                                                                       ` Loryn Jenkins
     [not found]                                                       ` <35f48276.90997557@news.erols.com <35F79B59.185AA03E@s054.aone.net.au>
1998-09-11  0:00                                                         ` Jim Cochrane
1998-09-12  0:00                                                           ` Loryn Jenkins
1998-09-12  0:00                                                             ` Jim Cochrane
1998-09-01  0:00                                         ` Software landmines (loops) Matthew Heaney
     [not found]                                     ` <35f51e53.48044143@news.erols.c <m3af4mq7f4.fsf@mheaney.ni.net>
1998-08-31  0:00                                       ` Patrick Doyle
1998-08-31  0:00                                         ` Gene Gajewski
1998-08-31  0:00                                         ` Richard D Riehle
1998-09-01  0:00                                           ` Simon Wright
1998-09-02  0:00                                           ` adam
1998-09-01  0:00                                         ` Matthew Heaney
1998-08-31  0:00                                     ` Ell
1998-08-31  0:00                                       ` Robert Martin
1998-08-31  0:00                                         ` Jeffrey C. Dege
1998-08-31  0:00                                           ` Ell
1998-08-31  0:00                                             ` Gene Gajewski
1998-08-31  0:00                                           ` Ell
1998-08-31  0:00                                             ` Jeffrey C. Dege
1998-08-31  0:00                                         ` Matthew Heaney
1998-08-31  0:00                                           ` Gene Gajewski
1998-08-31  0:00                                           ` Ell
1998-08-31  0:00                                             ` Phlip
1998-08-31  0:00                                               ` Robert Martin
1998-08-31  0:00                                             ` Robert Martin
1998-08-31  0:00                                               ` Ell
1998-08-31  0:00                                                 ` Robert Martin
1998-09-03  0:00                                                   ` Steven Perryman
1998-09-01  0:00                                                 ` Charles Hixson
1998-08-31  0:00                                           ` Patrick Logan
1998-09-01  0:00                                             ` dewarr
1998-08-31  0:00                                         ` Stephen Leake
1998-08-31  0:00                                           ` Robert Martin
1998-08-31  0:00                                             ` Agent
1998-09-01  0:00                                               ` Ell
1998-08-31  0:00                                                 ` Robert Martin
1998-09-01  0:00                                                   ` Tim Ottinger
1998-09-01  0:00                                                     ` Robert Martin
1998-09-01  0:00                                                   ` dennison
1998-09-01  0:00                                                     ` Robert Martin
1998-09-02  0:00                                                       ` Andrew Reilly
1998-09-01  0:00                                                         ` Robert Martin
1998-09-02  0:00                                                           ` dennison
     [not found]                                                 ` <6sfqul$ggg$1@hirame. <6sidsq$e6c$1@hirame.wwa.com>
1998-09-03  0:00                                                   ` Patrick Doyle
1998-09-03  0:00                                                     ` Charles Hixson
1998-09-03  0:00                                                       ` John G. Volan
1998-09-01  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                             ` Phil Goodwin
1998-09-01  0:00                                               ` Robert Martin
1998-09-02  0:00                                                 ` Ell
1998-09-01  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                     ` Richard MacDonald (dogmat)
1998-09-03  0:00                                                       ` Matthew Heaney
1998-09-02  0:00                                                     ` Richard Melvin
1998-09-02  0:00                                                     ` Matthew Heaney
1998-09-02  0:00                                                       ` Robert Martin
1998-09-02  0:00                                                         ` Richard Melvin
1998-09-02  0:00                                                           ` Tim Ottinger
1998-09-02  0:00                                                         ` Matthew Heaney
1998-09-02  0:00                                                     ` dennison
1998-09-03  0:00                                                     ` mfinney
     [not found]                                                     ` <gio+van+no+ni+8-0309982244140001@dialup62.tlh.talstar.com>
1998-09-04  0:00                                                       ` Ell
     [not found]                                                 ` <gio+van+no+ni+8-0309982225160001@dialup62.tlh.talstar.com>
1998-09-15  0:00                                                   ` mfinney
1998-10-01  0:00                                             ` Charles H. Sampson
1998-10-02  0:00                                               ` Ell
1998-10-02  0:00                                               ` Robert C. Martin
1998-10-02  0:00                                                 ` John I. Moore, Jr.
1998-10-02  0:00                                                   ` Ell
1998-10-03  0:00                                                   ` John Goodsen
1998-10-03  0:00                                                   ` Robert C. Martin
1998-10-03  0:00                                                     ` Richard D Riehle
1998-10-03  0:00                                                     ` Ell
1998-10-03  0:00                                                     ` John I. Moore, Jr.
1998-10-05  0:00                                                       ` Robert C. Martin
1998-10-06  0:00                                                       ` Matt Kennel
1998-10-06  0:00                                                         ` Ell
1998-10-05  0:00                                                     ` dewarr
1998-10-04  0:00                                                       ` Robert C. Martin
1998-10-05  0:00                                                         ` Ell
1998-10-05  0:00                                                           ` Ell
1998-10-05  0:00                                                         ` Ell
1998-10-09  0:00                                                     ` Matthew Heaney
1998-10-09  0:00                                                       ` Ell
1998-10-02  0:00                                                 ` Ell
1998-10-03  0:00                                                   ` Ell
1998-10-03  0:00                                                     ` Ell
1998-10-02  0:00                                                 ` Charles H. Sampson
1998-10-03  0:00                                                   ` Reimer Behrends
1998-10-04  0:00                                                     ` Charles H. Sampson
1998-10-05  0:00                                                       ` Reimer Behrends
1998-10-05  0:00                                                         ` Patrick Logan
1998-10-06  0:00                                                         ` Charles H. Sampson
1998-10-11  0:00                                                           ` Reimer Behrends
1998-10-05  0:00                                                 ` Graham Perkins
1998-10-08  0:00                                                   ` s350817
1998-10-09  0:00                                                 ` Matthew Heaney
1998-09-01  0:00                                       ` Charles Hixson
     [not found]                                     ` <35f51e53.48044143@ <m3af4mq7f4.fsf@mheaney.ni.net>
1998-08-31  0:00                                       ` Andrew Hussey
1998-08-31  0:00                                         ` Matthew Heaney
1998-08-31  0:00                                           ` Tim McDermott
1998-08-31  0:00                                             ` Larry Brasfield
1998-09-01  0:00                                               ` Matthew Heaney
1998-09-01  0:00                                             ` dewar
1998-09-01  0:00                                             ` Matthew Heaney
1998-08-31  0:00                                           ` Robert Martin
1998-08-31  0:00                                             ` Gene Gajewski
1998-09-01  0:00                                             ` Richard Melvin
1998-09-01  0:00                                               ` Robert Martin
1998-09-02  0:00                                               ` Jim Cochrane
1998-09-02  0:00                                                 ` Richard Melvin
1998-09-02  0:00                                                   ` Jim Cochrane
1998-09-03  0:00                                                     ` Matthew Heaney
1998-09-03  0:00                                                       ` Jim Cochrane
1998-09-03  0:00                                                       ` Loryn Jenkins
1998-09-01  0:00                                             ` Phil Goodwin
1998-09-01  0:00                                               ` Biju Thomas
1998-09-02  0:00                                                 ` Phil Goodwin
1998-09-02  0:00                                                   ` Robert Martin
1998-09-03  0:00                                                     ` Phil Goodwin
1998-09-03  0:00                                                       ` Robert Martin
1998-09-03  0:00                                               ` Ole-Hjalmar Kristensen
1998-09-01  0:00                                             ` Chris Brand
1998-09-01  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Biju Thomas
1998-09-01  0:00                                                   ` Robert Martin
1998-09-01  0:00                                             ` Matthew Heaney
1998-08-31  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Gerhard Menzl
1998-09-02  0:00                                                 ` Tres Seaver
1998-09-02  0:00                                                   ` Robert Martin
1998-09-03  0:00                                                     ` sureshvv
1998-09-03  0:00                                                   ` Patrick Logan
1998-09-01  0:00                                             ` sureshvv
1998-09-01  0:00                                               ` Robert Martin
1998-09-02  0:00                                                 ` sureshvv
1998-09-02  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                   ` Robert Martin
1998-09-03  0:00                                                     ` Charles Hixson
1998-09-04  0:00                                                       ` adam
1998-09-06  0:00                                                         ` Gerry Quinn
1998-09-04  0:00                                                       ` Patrick Logan
1998-09-04  0:00                                                     ` Rick Smith
1998-09-04  0:00                                                       ` Charles Hixson
1998-09-04  0:00                                                       ` Robert Martin
     [not found]                                                       ` <gio+van+no+ni+8-0809981818260001@dialup75.tlh.talstar.com>
1998-09-08  0:00                                                         ` Mark A Biggar
1998-09-08  0:00                                                         ` Rick Smith
1998-09-08  0:00                                                       ` adam
1998-09-08  0:00                                                         ` Rick Smith
1998-09-01  0:00                                             ` Robert I. Eachus
1998-09-01  0:00                                           ` Loryn Jenkins
1998-09-01  0:00                                             ` Matthew Heaney
1998-09-01  0:00                                               ` Loryn Jenkins
1998-09-01  0:00                                                 ` Matthew Heaney
1998-09-01  0:00                                                   ` James Weirich
1998-09-01  0:00                                                     ` Mike Spille
1998-09-02  0:00                                                       ` Nick Leaton
1998-09-02  0:00                                                   ` Loryn Jenkins
1998-09-01  0:00                                                     ` Darren New
1998-09-02  0:00                                                       ` Loryn Jenkins
1998-09-02  0:00                                                         ` Matthew Heaney
1998-09-02  0:00                                                           ` Loryn Jenkins
1998-09-01  0:00                                                     ` John Volan
1998-09-01  0:00                                                       ` Robert Martin
1998-09-02  0:00                                                       ` Chris Saunders
1998-09-02  0:00                                                       ` Nick Leaton
1998-09-01  0:00                                                     ` John Volan
1998-09-02  0:00                                                     ` Matthew Heaney
1998-09-02  0:00                                                       ` Loryn Jenkins
1998-09-02  0:00                                                       ` Tim McDermott
1998-09-03  0:00                                                         ` Matthew Heaney
1998-09-03  0:00                                                       ` Joe Gamache
1998-09-04  0:00                                                         ` Charles Hixson
1998-09-05  0:00                                                           ` Patrick Logan
1998-09-05  0:00                                                             ` Charles Hixson
1998-09-04  0:00                                                 ` Charles Hixson
1998-09-05  0:00                                                   ` Loryn Jenkins
1998-09-01  0:00                                               ` dewarr
1998-09-01  0:00                                                 ` Really a U.S. thing? (Was Re: Software landmines (loops)) Brian Rogoff
1998-09-01  0:00                                                 ` Optimizations (was: " dennison
1998-09-01  0:00                                                   ` Expressive Case Statements (was: Software landmines) Richard D Riehle
1998-09-01  0:00                                                     ` Robert I. Eachus
1998-09-02  0:00                                                       ` Dr Richard A. O'Keefe
1998-09-02  0:00                                                         ` Richard D Riehle
1998-09-03  0:00                                                           ` Dale Stanbrough
1998-09-04  0:00                                                           ` Al Christians
1998-09-05  0:00                                                             ` Tom Moran
1998-09-02  0:00                                                         ` Matthew Heaney
1998-09-02  0:00                                                         ` Robert I. Eachus
1998-09-04  0:00                                                           ` Al Christians
1998-09-02  0:00                                                       ` Richard D Riehle
1998-09-02  0:00                                                         ` Robert I. Eachus
1998-09-01  0:00                                                     ` Tucker Taft
1998-09-02  0:00                                                       ` Richard D Riehle
1998-09-02  0:00                                                     ` Tom Moran
1998-09-02  0:00                                                       ` Matthew Heaney
1998-09-02  0:00                                                       ` Richard D Riehle
1998-09-02  0:00                                                         ` Tom Moran
1998-09-03  0:00                                                           ` Richard D Riehle
1998-09-03  0:00                                                         ` Expressive Case Statements (long source) Tom Moran
1998-09-02  0:00                                                     ` Expressive Case Statements (was: Software landmines) Tom Moran
1998-09-04  0:00                                               ` Software landmines (loops) Jean-Marc Jezequel
1998-09-04  0:00                                                 ` Richard Melvin
1998-09-07  0:00                                                   ` Jean-Marc Jezequel
1998-09-01  0:00                                           ` Don Harrison
1998-08-31  0:00                                         ` Mattias Lundstr�m
1998-08-31  0:00                                           ` Robert Martin
1998-08-31  0:00                                             ` Robert I. Eachus
1998-08-31  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Matthew Heaney
1998-09-01  0:00                                                   ` Stephen Leake
1998-09-01  0:00                                                     ` Robert Martin
1998-09-01  0:00                                               ` Matthew Heaney
1998-09-01  0:00                                             ` Richard Jones
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-02  0:00                                                 ` Patrick Logan
1998-09-02  0:00                                                   ` Robert Martin
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-02  0:00                                               ` Mattias Lundstr�m
1998-09-01  0:00                                             ` Mattias Lundstr�m
1998-09-01  0:00                                               ` Robert Martin
1998-09-01  0:00                                                 ` Robert I. Eachus
1998-09-01  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                 ` Mattias Lundstr�m
1998-09-02  0:00                                                 ` Mattias Lundstr�m
1998-09-02  0:00                                                   ` Robert Martin
1998-09-01  0:00                                           ` Tim Ottinger
1998-09-01  0:00                                         ` dewarr
     [not found]                                     ` <35f51e53.48044143@ <904556531.666222@miso.it.uq.edu.au>
1998-09-01  0:00                                       ` Gerry Quinn
1998-09-01  0:00                                         ` Robert Martin
1998-09-01  0:00                                           ` Mike Spille
1998-09-01  0:00                                             ` Robert Martin
     [not found]                                               ` <gio+van+no+ni+8-0309982212300001@dialup62.tlh.talstar.com>
1998-09-04  0:00                                                 ` Robert I. Eachus
     [not found]                                                   ` <gio+van+no+ni+8-0809981840170001@dialup75.tlh.talstar.com>
1998-09-09  0:00                                                     ` Nick Leaton
     [not found]                                                       ` <gio+van+no+ni+8-1609980026290001@dialup26.tlh.talstar.com>
1998-09-16  0:00                                                         ` Nick Leaton
1998-09-01  0:00                                           ` Gerry Quinn
1998-09-01  0:00                                             ` Robert Martin
1998-09-02  0:00                                               ` Gerry Quinn
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Ell
1998-09-04  0:00                                                     ` Andre Tibben
1998-09-04  0:00                                                       ` Patrick Doyle
1998-09-02  0:00                                                   ` Gerry Quinn
1998-09-02  0:00                                                     ` Robert Martin
1998-09-03  0:00                                                       ` Ell
1998-09-04  0:00                                                         ` Ell
1998-09-03  0:00                                                           ` Robert Martin
1998-09-04  0:00                                                             ` Ell
1998-09-04  0:00                                                               ` Patrick Doyle
1998-09-05  0:00                                                                 ` Ell
1998-09-05  0:00                                                                   ` Jeffrey C. Dege
1998-09-05  0:00                                                                     ` Matthew Heaney
1998-09-05  0:00                                                                       ` Matthew Heaney
1998-09-05  0:00                                                                         ` Robert Martin
1998-09-06  0:00                                                                           ` Loryn Jenkins
1998-09-05  0:00                                                                             ` Robert Martin
1998-09-06  0:00                                                                               ` Loryn Jenkins
1998-09-06  0:00                                                                                 ` Charles Hixson
1998-09-06  0:00                                                                                   ` Patrick Doyle
1998-09-07  0:00                                                                                 ` Ray Gardner
1998-09-07  0:00                                                                                   ` Patrick Logan
1998-09-08  0:00                                                                         ` Tim McDermott
1998-09-08  0:00                                                                           ` Patrick Doyle
1998-09-08  0:00                                                                             ` Patrick Logan
1998-09-17  0:00                                                                           ` Matthew Heaney
1998-09-05  0:00                                                                       ` Robert Martin
1998-09-09  0:00                                                                       ` Tim Ottinger
1998-09-17  0:00                                                                         ` Matthew Heaney
1998-09-16  0:00                                                                           ` Tim Ottinger
1998-09-17  0:00                                                                             ` [WAYRTW?] (was: Re: Software landmines (loops)) Zane Lewkowicz
1998-09-17  0:00                                                                               ` Biju Thomas
1998-09-18  0:00                                                                               ` L. Darrell Ray
1998-09-05  0:00                                                                   ` Software landmines (loops) Loryn Jenkins
1998-09-05  0:00                                                                     ` Robert Martin
1998-09-06  0:00                                                                       ` Loryn Jenkins
1998-09-05  0:00                                                                         ` Robert Martin
1998-09-06  0:00                                                                           ` Loryn Jenkins
1998-09-04  0:00                                                               ` Robert Martin
1998-09-05  0:00                                                                 ` Loryn Jenkins
1998-09-04  0:00                                                                   ` Ell
1998-09-05  0:00                                                                     ` Loryn Jenkins
1998-09-03  0:00                                                       ` sureshvv
1998-09-03  0:00                                                         ` Robert Martin
1998-09-03  0:00                                                           ` Mike Spille
1998-09-03  0:00                                                             ` Robert Martin
1998-09-03  0:00                                                               ` Mike Spille
1998-09-03  0:00                                                                 ` Robert Martin
1998-09-04  0:00                                                                 ` sureshvv
1998-09-04  0:00                                                                   ` Robert Martin
1998-09-04  0:00                                                                     ` Mike Spille
1998-09-05  0:00                                                                       ` Ell
1998-09-05  0:00                                                                         ` Moderators for life (was: Re: Software landmines) Martijn Meijering
1998-09-05  0:00                                                                           ` Thaddeus L. Olczyk
1998-09-06  0:00                                                                           ` Moderators for life Ell
1998-09-04  0:00                                                               ` Software landmines (loops) Gerry Quinn
1998-09-04  0:00                                                               ` Ray Blaak
1998-09-06  0:00                                                                 ` Charles Hixson
1998-09-06  0:00                                                                   ` Robert Martin
1998-09-07  0:00                                                                     ` Patrick Logan
     [not found]                                                               ` <EyyLos.2nx@yc.estec.esa.nl>
1998-09-08  0:00                                                                 ` John G. Volan
1998-09-08  0:00                                                                   ` duncan
1998-09-08  0:00                                                                     ` Patrick Doyle
1998-09-08  0:00                                                                 ` Robert Martin
1998-09-06  0:00                                                           ` Charles Hixson
1998-09-06  0:00                                                             ` Robert Martin
1998-09-06  0:00                                                               ` Charles Hixson
1998-09-09  0:00                                                               ` sureshvv
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-04  0:00                                                           ` Matthew Heaney
     [not found]                                                     ` <6skqf3$ <35F0B5B0.8E2D0166@s054.aone.net.au>
1998-09-06  0:00                                                       ` Will Rose
1998-09-06  0:00                                                         ` Ell
1998-09-06  0:00                                                           ` Jeffrey C. Dege
1998-09-02  0:00                                           ` Gene Gajewski
1998-09-02  0:00                                           ` mfinney
1998-09-02  0:00                                             ` Ell
1998-09-02  0:00                                               ` Robert Oliver
1998-09-02  0:00                                                 ` john-clonts
1998-09-02  0:00                                                   ` Robert Martin
1998-09-02  0:00                                                   ` Darren New
1998-09-02  0:00                                                 ` Ell
1998-09-02  0:00                                                   ` Robert Oliver
1998-09-02  0:00                                                     ` Robert Martin
1998-09-03  0:00                                                       ` sureshvv
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-06  0:00                                                       ` Charles Hixson
1998-09-07  0:00                                                         ` Loryn Jenkins
1998-09-03  0:00                                                     ` Ell
1998-09-03  0:00                                                       ` Jeffrey C. Dege
1998-09-02  0:00                                                 ` Matthew Heaney
1998-09-05  0:00                                               ` Ray Gardner
1998-09-05  0:00                                                 ` Matthew Heaney
1998-09-07  0:00                                                   ` Ray Gardner
1998-09-07  0:00                                                     ` Ell
1998-09-07  0:00                                                       ` Patrick Doyle
1998-09-07  0:00                                                         ` dewarr
1998-09-07  0:00                                                       ` Ell
1998-09-09  0:00                                                         ` Adrian P. Morgan
1998-09-09  0:00                                                           ` Charles Hixson
1998-09-10  0:00                                                             ` mfinney
     [not found]                                                               ` <gio+van+no+ni+8-1609981736190001@dialup47.tlh.talstar.com>
1998-09-17  0:00                                                                 ` mfinney
1998-09-07  0:00                                                       ` dewarr
1998-09-09  0:00                                                         ` Ray Gardner
1998-09-11  0:00                                                           ` Robert I. Eachus
1998-09-07  0:00                                                       ` Ray Gardner
1998-09-07  0:00                                                         ` Ell
1998-09-07  0:00                                                           ` Ell
1998-09-09  0:00                                                           ` Ray Gardner
1998-10-09  0:00                                                     ` Matthew Heaney
     [not found]                                               ` <m31zpq4pim.fsf@mheaney.ni.ne <m3af36wtwh.fsf@mheaney.ni.net>
1998-10-11  0:00                                                 ` Patrick Doyle
1998-09-02  0:00                                             ` Ell
1998-09-02  0:00                                             ` Robert Martin
1998-09-02  0:00                                               ` adam
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Mike Spille
1998-09-03  0:00                                                   ` Gerry Quinn
1998-09-03  0:00                                                   ` Richard MacDonald
1998-09-06  0:00                                                 ` Charles Hixson
1998-09-02  0:00                                               ` Matthew Heaney
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Dan Higdon
1998-09-03  0:00                                                     ` Mid-Loop 'Until' Proposal [was: Software landmines (loops)] John G. Volan
     [not found]                                                       ` <Q7UH1.3152$re2.302134@news.giganews.com>
     [not found]                                                         ` <35F2E055.6922B7EC@earthlink.net>
1998-09-06  0:00                                                           ` John G. Volan
1998-09-02  0:00                                                   ` Software landmines (loops) dennison
1998-09-02  0:00                                                   ` Matthew Heaney
1998-09-02  0:00                                                     ` Robert Martin
1998-09-03  0:00                                                       ` Matthew Heaney
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-03  0:00                                                           ` Module size (was Re: Software landmines) Jeffrey C. Dege
1998-09-03  0:00                                                             ` Robert Martin
1998-09-04  0:00                                                               ` Martin Tom Brown
1998-09-04  0:00                                                                 ` Christopher P. Gariepy
1998-09-04  0:00                                                                   ` Robert Martin
1998-09-04  0:00                                                                     ` Pat Rogers
1998-09-05  0:00                                                                       ` Ell
1998-09-05  0:00                                                                         ` Loryn Jenkins
1998-09-05  0:00                                                                           ` Patrick Doyle
1998-09-05  0:00                                                                           ` Robert Martin
1998-09-05  0:00                                                                             ` Jeffrey C. Dege
1998-09-06  0:00                                                                             ` Loryn Jenkins
1998-09-06  0:00                                                                               ` Patrick Doyle
1998-09-08  0:00                                                                                 ` Ken Carpenter
1998-09-08  0:00                                                                                 ` James Weirich
1998-09-05  0:00                                                                       ` Loryn Jenkins
1998-09-04  0:00                                                                         ` Types vs classes (was Re: Module size (was Re: Software landmines)) Pat Rogers
1998-09-05  0:00                                                                           ` Loryn Jenkins
1998-09-07  0:00                                                                             ` Juergen Schlegelmilch
1998-09-07  0:00                                                                               ` Juergen Schlegelmilch
1998-09-04  0:00                                                                   ` Module size (was Re: Software landmines) Ell
1998-09-04  0:00                                                                   ` Emtpy procedures (was Re: Module size (was Re: Software landmines)) Jim Cochrane
1998-09-04  0:00                                                                   ` Module size (was Re: Software landmines) John G. Volan
1998-09-06  0:00                                                                     ` Charles Hixson
1998-09-06  0:00                                                                       ` John G. Volan
1998-09-04  0:00                                                             ` Chris Kuan
1998-09-04  0:00                                                               ` Jeffrey C. Dege
1998-09-04  0:00                                                                 ` Chris Kuan
1998-09-04  0:00                                                             ` John G. Volan
1998-09-04  0:00                                                               ` John G. Volan
1998-09-04  0:00                                                               ` Patrick Logan
1998-09-05  0:00                                                                 ` Jeffrey C. Dege
1998-09-05  0:00                                                                   ` Patrick Logan
1998-09-05  0:00                                                                     ` Jeffrey C. Dege
1998-09-03  0:00                                                         ` Software landmines (loops) Robert Martin
1998-09-03  0:00                                                           ` Biju Thomas
1998-09-03  0:00                                                           ` Phil Goodwin
1998-09-04  0:00                                                             ` Matthew Heaney
1998-09-04  0:00                                                               ` Jeffrey C. Dege
1998-09-04  0:00                                                                 ` Patrick Logan
1998-09-04  0:00                                                                 ` Ell
1998-09-04  0:00                                                                   ` Elliot's paranoia (was something relevent once, but no longer) Jeffrey C. Dege
1998-09-04  0:00                                                           ` Software landmines (loops) Ell
1998-09-04  0:00                                                             ` Ell
1998-09-05  0:00                                                             ` Loryn Jenkins
1998-09-06  0:00                                                               ` Charles Hixson
1998-09-07  0:00                                                                 ` Loryn Jenkins
     [not found]                                                             ` <35F074C9.E10C <35F2E907.594CD023@earthlink.net>
1998-09-07  0:00                                                               ` Patrick Doyle
1998-09-10  0:00                                                             ` Tim Ottinger
1998-09-10  0:00                                                               ` dewarr
1998-09-11  0:00                                                                 ` prochak
1998-09-12  0:00                                                                 ` Ell
1998-09-12  0:00                                                                   ` dewarr
1998-09-12  0:00                                                                     ` Charles Hixson
1998-09-13  0:00                                                                       ` dewarr
1998-09-14  0:00                                                                     ` Ell
1998-09-03  0:00                                                         ` Robert Martin
1998-09-02  0:00                                                     ` Patrick Logan
1998-09-03  0:00                                                       ` Matthew Heaney
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-03  0:00                                                       ` Ole-Hjalmar Kristensen
1998-09-03  0:00                                                         ` Patrick Logan
1998-09-02  0:00                                               ` Phil Goodwin
1998-09-02  0:00                                               ` adam
1998-09-02  0:00                                               ` Ell
1998-09-02  0:00                                                 ` Rick Smith
1998-09-02  0:00                                                   ` Robert I. Eachus
1998-09-02  0:00                                                     ` Patrick Logan
1998-09-03  0:00                                                       ` Robert I. Eachus
1998-09-02  0:00                                                 ` adam
1998-09-02  0:00                                                 ` Patrick Doyle
1998-09-02  0:00                                                 ` Robert Martin
1998-09-02  0:00                                                   ` Ell
1998-09-02  0:00                                                     ` Robert Martin
1998-09-02  0:00                                                       ` Ell
1998-09-02  0:00                                                         ` Robert Martin
1998-09-03  0:00                                                           ` Joe Gwinn
1998-09-03  0:00                                                             ` Robert Martin
1998-09-04  0:00                                                               ` sureshvv
1998-09-04  0:00                                                               ` Ell
1998-09-04  0:00                                                                 ` Robert Martin
1998-09-04  0:00                                                                   ` Ell
1998-09-06  0:00                                                             ` Charles Hixson
1998-09-06  0:00                                                               ` Robert Martin
1998-09-06  0:00                                                                 ` Jeffrey C. Dege
1998-09-06  0:00                                                                   ` Robert Martin
1998-09-06  0:00                                                               ` Matthew Heaney
1998-09-06  0:00                                                                 ` Robert Martin
1998-09-06  0:00                                                                   ` Ell
1998-09-06  0:00                                                                     ` Jeffrey C. Dege
1998-09-11  0:00                                                                   ` Robert I. Eachus
1998-09-12  0:00                                                                     ` Patrick Logan
1998-09-08  0:00                                                               ` adam
1998-09-09  0:00                                                                 ` Gerry Quinn
     [not found]                                                                   ` <gio+van+no+ni+8-1609980034390001@dialup26.tlh.talstar.com>
1998-09-16  0:00                                                                     ` Biju Thomas
1998-09-16  0:00                                                                       ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Rick Smith
1998-09-17  0:00                                                                         ` Markus Kuhn
1998-09-17  0:00                                                                           ` dewarr
1998-09-17  0:00                                                                             ` Biju Thomas
1998-09-18  0:00                                                                               ` dewarr
1998-09-18  0:00                                                                                 ` Markus Kuhn
1998-10-09  0:00                                                                             ` Matthew Heaney
1998-10-09  0:00                                                                               ` Pat Rogers
1998-10-09  0:00                                                                               ` Jay Martin
1998-10-09  0:00                                                                                 ` Pat Rogers
1998-10-10  0:00                                                                                 ` Dave Wood
1998-10-13  0:00                                                                                 ` last.first
1998-10-23  0:00                                                                                   ` Gautier.DeMontmollin
1998-10-23  0:00                                                                                   ` Brian Mueller
1998-10-23  0:00                                                                                     ` midlamD
1998-10-23  0:00                                                                                       ` Ell
1998-10-23  0:00                                                                                     ` Arun Mangalam
1998-10-23  0:00                                                                                       ` DPH
1998-10-24  0:00                                                                                         ` Michael Stark
1998-10-23  0:00                                                                                     ` College, C, etc. (Was Re: Is there a language that Dijkstra liked?) Darren New
1998-10-23  0:00                                                                                       ` Tom J
1998-10-23  0:00                                                                                         ` K. Mathias
1998-10-24  0:00                                                                                       ` Jerry van Dijk
1998-10-25  0:00                                                                                       ` College, C, etc Frank Sergeant
1998-10-26  0:00                                                                                         ` Darren New
1998-10-29  0:00                                                                                           ` Graham Perkins
1998-10-29  0:00                                                                                             ` Arun Mangalam
1998-10-29  0:00                                                                                             ` Paul A. Howes
1998-10-30  0:00                                                                                               ` Jeffrey C. Dege
1998-10-30  0:00                                                                                                 ` Patrick Logan
1998-10-23  0:00                                                                                     ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Ell
1998-10-24  0:00                                                                                     ` Dave Wood
1998-10-24  0:00                                                                                     ` Dale Stanbrough
1998-10-24  0:00                                                                                     ` Dave Wood
1998-10-24  0:00                                                                                       ` Tucker Taft
1998-10-24  0:00                                                                                     ` Ehud Lamm
1998-10-26  0:00                                                                                     ` Bill Ghrist
1998-10-27  0:00                                                                                       ` Ell
1998-10-27  0:00                                                                                         ` dewarr
     [not found]                                                                                     ` <3 <slrn73ifd1.8ip.jdege@jdege.visi.com>
1998-10-30  0:00                                                                                       ` College, C, etc Tom J
1998-10-11  0:00                                                                               ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Bertrand Meyer
1998-10-12  0:00                                                                                 ` Pat Rogers
1998-10-12  0:00                                                                                 ` Rod Chapman
1998-10-13  0:00                                                                                 ` Robert I. Eachus
1998-09-17  0:00                                                                           ` Pat Rogers
1998-09-17  0:00                                                                             ` dewarr
1998-09-17  0:00                                                                             ` David C. Hoos, Sr.
1998-09-21  0:00                                                                             ` Is there a language that Dijkstra liked? Peter Hermann
1998-09-21  0:00                                                                               ` dewarr
1998-09-21  0:00                                                                               ` Pat Rogers
1998-09-18  0:00                                                                           ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) bengt
1998-09-17  0:00                                                                       ` Software landmines (loops) dewarr
1998-09-18  0:00                                                                         ` Ell
1998-09-17  0:00                                                                       ` Gerry Quinn
1998-09-17  0:00                                                                         ` dewarr
1998-09-18  0:00                                                                           ` Gerry Quinn
1998-09-18  0:00                                                                             ` Biju Thomas
1998-09-18  0:00                                                                               ` Robert C. Martin
1998-09-19  0:00                                                                                 ` Rick Smith
1998-09-19  0:00                                                                               ` dewarr
1998-09-21  0:00                                                                                 ` Richard D Riehle
1998-09-19  0:00                                                                               ` Ell
1998-09-19  0:00                                                                             ` dewarr
1998-09-11  0:00                                                                 ` spaghetti code(was Re: Software landmines (loops)) Joe Chacko
     [not found]                                                                   ` <01bddfb7$f3eac320$ca3aea9e@tom>
1998-09-15  0:00                                                                     ` prochak
1998-09-03  0:00                                                       ` Software landmines (loops) Malcolm Steel
     [not found]                                                       ` <o1fH1.543$495.1 <gwinn-0309982042490001@d8.dial-4.cmb.ma.ultra.net>
1998-09-04  0:00                                                         ` Samuel Mize
1998-09-04  0:00                                                           ` Ell
1998-09-05  0:00                                                           ` Loryn Jenkins
1998-09-09  0:00                                                             ` Samuel Mize
1998-09-09  0:00                                                               ` sureshvv
1998-09-10  0:00                                                                 ` prochak
1998-09-11  0:00                                                                   ` Patrick Doyle
1998-09-17  0:00                                                                 ` Matthew Heaney
1998-09-10  0:00                                                               ` Tim Ottinger
     [not found]                                                                 ` <01bddccc$98b2dda0$ca3aea9e@tom>
1998-09-10  0:00                                                                   ` Tim Ottinger
1998-09-11  0:00                                                             ` Robert I. Eachus
1998-09-12  0:00                                                               ` Loryn Jenkins
1998-09-11  0:00                                                                 ` alan walkington
1998-09-12  0:00                                                                   ` Loryn Jenkins
1998-09-17  0:00                                                                 ` Linguistic invention (was Re: Software landmines (loops)) Robert I. Eachus
1998-09-18  0:00                                                                   ` Ell
1998-10-09  0:00                                                       ` Is there a language that Dijkstra liked? (was: " Gautier.DeMontmollin
1998-09-02  0:00                                                     ` Software landmines (loops) Robert Martin
1998-09-02  0:00                                                       ` Ell
     [not found]                                                     ` <6sjnlu$83l$1@hirame.wwa.c <35EE5F67.80D@gecm.com>
1998-09-03  0:00                                                       ` Patrick Doyle
1998-09-02  0:00                                                   ` Ell
1998-09-03  0:00                                                     ` Ole-Hjalmar Kristensen
1998-09-03  0:00                                                       ` Ell
1998-09-03  0:00                                                         ` Patrick Doyle
1998-09-03  0:00                                                         ` Martin Tom Brown
     [not found]                                               ` <gio+van+no+ni+8-0309982311220001@dialup62.tlh.talstar.com>
1998-09-03  0:00                                                 ` Robert Martin
1998-09-03  0:00                                               ` mfinney
1998-09-03  0:00                                                 ` Robert Martin
1998-09-02  0:00                                             ` john-clonts
1998-09-03  0:00                                               ` mfinney
1998-09-06  0:00                                                 ` Charles Hixson
1998-09-06  0:00                                                   ` mfinney
1998-09-03  0:00                                     ` Expressive Case Statements (was: Software landmines) Fergus Henderson
1998-09-09  0:00                                     ` Software landmines (loops) Jonas M�ls�
     [not found]                                     ` <35f51e53.48044143@ <6t6l4n$rep@jbm.nada.kth.se>
1998-09-10  0:00                                       ` Mats Weber
1998-09-17  0:00                                       ` Matthew Heaney
     [not found]                                 ` <m3ogt3qgca.fsf@mheaney.ni.n <1dghyt5.oik1lzhxzf2N@n207167116176.inetworld.net>
1998-10-10  0:00                                   ` Patrick Doyle
1998-10-12  0:00                                     ` Charles H. Sampson
1998-10-13  0:00                                       ` Matthew Heaney
1998-10-14  0:00                                       ` Graham Perkins
1998-10-15  0:00                                         ` Reimer Behrends
1998-10-15  0:00                                           ` dewarr
1998-10-15  0:00                                       ` Indicators of program quality? (was Re: Software landmines) Jeffrey C. Dege
     [not found]                               ` <m33eagru5g.fsf@mheaney.ni.net>
1998-08-31  0:00                                 ` Software landmines (was: Why C++ is successful) Frank Adrian
1998-08-31  0:00                                   ` Robert I. Eachus
1998-08-31  0:00                                     ` Biju Thomas
1998-08-31  0:00                                       ` Robert Martin
1998-09-01  0:00                                         ` Martin Dowie
1998-09-01  0:00                                       ` Robert I. Eachus
1998-09-02  0:00                                         ` dennison
1998-09-01  0:00                                   ` dewarr
1998-09-06  0:00                                 ` Jonathan Guthrie
1998-08-20  0:00                           ` Ell
1998-08-20  0:00                             ` Structured programming (Re: Software landmines (was: Why C++ is successful)) Darren New
1998-08-21  0:00                               ` Gene Gajewski
1998-08-21  0:00                             ` Software landmines (was: Why C++ is successful) Ell
1998-08-21  0:00                               ` John Goodsen
1998-08-21  0:00                                 ` Ell
1998-08-21  0:00                                   ` Ell
1998-08-21  0:00                               ` Larry Brasfield
1998-08-21  0:00                                 ` Bob Collins
1998-08-21  0:00                                 ` Ell
1998-08-21  0:00                                 ` Jeffrey C. Dege
1998-08-20  0:00                                   ` Phlip
1998-08-21  0:00                                   ` Larry Brasfield
     [not found]                                   ` <DOSXjHE9T6DM9Jw9nAyaPxfz@news.rdc1.bc.wave.home.com>
1998-08-22  0:00                                     ` dewar
1998-08-24  0:00                                       ` dennison
1998-08-28  0:00                                         ` Matthew Heaney
1998-08-28  0:00                                           ` dennison
1998-08-30  0:00                                             ` Matthew Heaney
1998-09-06  0:00                                               ` John G. Volan
1998-08-31  0:00                                             ` Robert I. Eachus
1998-08-24  0:00                                       ` Martin Dowie
1998-08-24  0:00                                         ` Martin Dowie
1998-08-24  0:00                                           ` Mark A Biggar
1998-08-25  0:00                                             ` Martin Dowie
1998-08-25  0:00                                               ` Mark A Biggar
1998-08-26  0:00                                                 ` Martin Dowie
1998-08-25  0:00                                         ` adam
1998-09-22  0:00                                       ` Charles H. Sampson
     [not found]                           ` <l5HC1.6840$wN.18 <35F238F7.F57D3EC7@earthlink.net>
1998-09-06  0:00                             ` Software landmines (loops) Patrick Doyle
1998-10-21  0:00                           ` Is there a language that Dijkstra liked? (was: Re: Software landmines (loops)) Van Snyder
1998-10-22  0:00                             ` biocyn
1998-10-26  0:00                               ` Ehud Lamm
1998-10-26  0:00                                 ` Tucker Taft
1998-10-26  0:00                                   ` dennison
1998-10-26  0:00                                     ` Ehud Lamm
1998-10-26  0:00                                       ` Pat Rogers
1998-10-27  0:00                                       ` dennison
1998-10-27  0:00                                     ` bill
1998-10-27  0:00                                     ` Dave Wood
1998-10-28  0:00                                       ` norm
1998-10-27  0:00                                 ` dewarr
1998-10-27  0:00                                   ` Ehud Lamm
1998-11-04  0:00                                   ` business for students Domenico Bisignano
1998-08-20  0:00                         ` Software landmines (was: Why C++ is successful) Gerry Quinn
1998-08-11  0:00           ` Why C++ is successful stilcom
1998-08-11  0:00             ` Microsoft Authors [was Re: Why C++ is successful] john-clonts
1998-08-11  0:00               ` dennison
1998-08-11  0:00                 ` John Weiss
1998-08-12  0:00             ` Why C++ is successful Jeffrey C. Dege
1998-08-12  0:00               ` Code Complete (Was: Re: Why C++ is successful) Chris Kuan
1998-08-12  0:00               ` Why C++ is successful Andrew Koenig
1998-08-14  0:00               ` Stefan Tilkov
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <m31zpxqutn.fsf@mheaney.ni.net>
1998-08-31  0:00             ` Software landmines (loops) Jim Cochrane
1998-09-01  0:00               ` Matthew Heaney
1998-09-01  0:00               ` Matthew Heaney
1998-09-02  0:00                 ` Jim Cochrane
1998-09-02  0:00                   ` Richard Melvin
1998-09-03  0:00                     ` Jim Cochrane
1998-09-03  0:00                   ` Robert I. Eachus
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35EC1590.D50DB8F6@tisny.com>
1998-09-01  0:00             ` Patrick Doyle
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <6shunm$47g$1@hirame.wwa.com>
1998-09-02  0:00             ` David E. Wallace
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <m3zpck79xp.fsf@mheaney.ni.net>
1998-09-02  0:00             ` Patrick Doyle
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <6shhg4$llp$1@hirame.wwa.com>
1998-09-02  0:00             ` Jim Cochrane
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <6sjms6$7c4$1@hirame.wwa.com>
1998-09-02  0:00             ` Patrick Doyle
1998-09-02  0:00               ` Patrick Logan
1998-09-02  0:00                 ` Patrick Doyle
1998-09-02  0:00                   ` Robert Martin
1998-09-03  0:00                   ` Patrick Logan
1998-09-02  0:00               ` Robert Martin
1998-09-02  0:00                 ` Patrick Logan
1998-09-02  0:00                   ` Robert Martin
1998-09-04  0:00                     ` Patrick Logan
1998-09-03  0:00               ` mfinney
1998-09-03  0:00                 ` Patrick Doyle
1998-09-03  0:00               ` Matthew Heaney
1998-09-03  0:00                 ` Robert Martin
1998-09-03  0:00                   ` Patrick Logan
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35EDC648.76F03F32@draper.com>
1998-09-03  0:00             ` Patrick Doyle
1998-09-03  0:00               ` Martin Tom Brown
1998-09-03  0:00               ` Tim McDermott
1998-09-04  0:00                 ` Patrick Doyle
1998-09-04  0:00                 ` Matthew Heaney
1998-09-04  0:00                   ` Patrick Doyle
1998-09-08  0:00                   ` Tim McDermott
1998-09-17  0:00                     ` Matthew Heaney
1998-09-17  0:00                       ` Reimer Behrends
1998-09-18  0:00                       ` Robert I. Eachus
1998-09-18  0:00                         ` Jeffrey C. Dege
     [not found]           ` <35f51e53.48044143@ <904556531. <m3lno372be.fsf@mheaney.ni.net>
1998-09-03  0:00             ` Patrick Doyle
1998-09-03  0:00               ` Loryn Jenkins
1998-09-03  0:00             ` Patrick Doyle
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35EC937F.94420C51@ibm.net>
1998-09-07  0:00             ` Michael F Brenner
     [not found]           ` <35f51e53.48044143@ <m3af4mq7f4 <35F09429.1A7CD250@easystreet.com>
1998-09-07  0:00             ` Expressive Case Statements (was: Software landmines) Michael F Brenner
     [not found]           ` <35f51e53.480<904556531.666222@ <6t42kg$son$1@hirame.wwa.com>
1998-09-08  0:00             ` Software landmines (loops) Patrick Doyle
     [not found]           ` <35f51e53.480 <904556531.66622 <EyyLos.2nx@yc.estec.esa.nl>
1998-09-08  0:00             ` Jim Cochrane
1998-09-09  0:00               ` duncan
1998-09-11  0:00                 ` Jim Cochrane
1998-09-11  0:00                   ` duncan
1998-09-09  0:00               ` Charles Hixson
1998-09-10  0:00                 ` Loryn Jenkins
1998-09-17  0:00                 ` Matthew Heaney
1998-09-08  0:00             ` duncan
1998-09-16  0:00               ` Matthew Heaney
1998-09-17  0:00                 ` Reimer Behrends
1998-09-17  0:00                   ` Ell
1998-08-08  0:00       ` Why C++ is successful Dale Stanbrough
  -- strict thread matches above, loose matches on Subject: below --
1998-08-22  0:00 Software landmines (was: Why C++ is successful) dewar
1998-08-23  0:00 ` Dale Stanbrough
1998-08-23  0:00   ` dewar
1998-08-23  0:00   ` Andi Kleen
1998-08-24  0:00 ` Richard D Riehle
1998-08-25  0:00   ` Andi Kleen
1998-08-25  0:00     ` Brian Rogoff
1998-08-25  0:00   ` dennison
1998-08-28  0:00   ` Matthew Heaney
1998-08-28  0:00     ` Richard D Riehle
1998-08-29  0:00       ` Matthew Heaney
1998-08-29  0:00       ` Matthew Heaney
1998-09-06  0:00         ` John G. Volan
1998-09-07  0:00           ` Mats Weber
1998-09-07  0:00             ` dewarr
1998-09-08  0:00               ` Tucker Taft
1998-09-16  0:00               ` Matthew Heaney
     [not found]   ` <35eca5d9.4354839@news.geccs.gecm.com>
1998-09-01  0:00     ` Richard D Riehle
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox