Xref: utzoo comp.lang.c:34118 comp.os.msdos.programmer:2066 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!julius.cs.uiuc.edu!ux1.cso.uiuc.edu!news.cs.indiana.edu!iuvax!bomgard From: bomgard@iuvax.cs.indiana.edu (Tim Bomgardner) Newsgroups: comp.lang.c,comp.os.msdos.programmer Subject: warning to users of INDENT.EXE Summary: catastrophic bug Message-ID: <73542@iuvax.cs.indiana.edu> Date: 21 Nov 90 16:24:13 GMT Organization: Indiana University, Bloomington Lines: 17 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.