Xref: utzoo comp.lang.c:34122 comp.os.msdos.programmer:2069 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!usc!julius.cs.uiuc.edu!ux1.cso.uiuc.edu!aries!mcdonald From: mcdonald@aries.scs.uiuc.edu (Doug McDonald) Newsgroups: comp.lang.c,comp.os.msdos.programmer Subject: Re: warning to users of INDENT.EXE Message-ID: <1990Nov22.013729.23433@ux1.cso.uiuc.edu> Date: 22 Nov 90 01:37:29 GMT References: <73542@iuvax.cs.indiana.edu> Sender: news@ux1.cso.uiuc.edu (News) Organization: School of Chemical Sciences, Univ. of Illinois at Urbana-Champaign Lines: 27 In article <73542@iuvax.cs.indiana.edu> bomgard@iuvax.cs.indiana.edu (Tim Bomgardner) writes: >I recently inherited a large multi-file c program with little or no >visual structure (indenting, whitespace, etc.). I ran it all thru >indent. A couple days later I discovered indent had made some >unauthorized changes. In particular, all statements that were >originally in the form > > var=-1; >or > ptr=&var; > >were changed to > > var -= 1; >or > ptr &= var; > >What a disaster. Just thought you all might like to know. > and var=.5; changed to var .= 5; /*!!!*/ Yes indeed. However, you have a very old version. The version to circulate recently in the source groups has this thoroughly fixed. Doug McDonald