From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 102b75,501ec19d1d81daee X-Google-Attributes: gid102b75,public X-Google-Thread: 103376,db9a11afb3da4240 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-01 09:45:09 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.arch,comp.lang.ada Subject: Re: Language support for flexible handling of system-detected errors. Followup-To: comp.lang.ada Date: 01 Apr 2002 12:44:37 -0500 Organization: NASA Goddard Space Flight Center (skates.gsfc.nasa.gov) Message-ID: References: NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 1017683412 13662 128.183.220.71 (1 Apr 2002 17:50:12 GMT) X-Complaints-To: usenet@news.gsfc.nasa.gov NNTP-Posting-Date: 1 Apr 2002 17:50:12 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.arch:26262 comp.lang.ada:21951 Date: 2002-04-01T17:50:12+00:00 List-Id: "Marin David Condic" writes: > Two things: 1) Nobody building a compiler can possibly guarantee you that it > will work with *your* editor since that could be just about anything. There > is no "standard" interface to every editor on the planet, so this would be a > hopeless goal. Not to every editor on the planet, but there have been some efforts in this regard. DEC defined a standard format for compiler diagnostics (I forget what it was called), that LSE and other DEC tools could read. For non-DEC tools (like Emacs), there was a text equivalent. Gnu tools have a standard format for error messages, making them easy to parse by simple scripts in editors. Most programmer-oriented editors allow you to customize the command line used to invoke compilers and similar tools. I don't think we need a real "standard" here, just a common paradigm and a reasonably powerful scripting language in the editor. -- -- Stephe