bug-indent
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-indent] -cdw doen't seem to remove some new lines


From: Thornburg, Christopher A
Subject: [Bug-indent] -cdw doen't seem to remove some new lines
Date: Thu, 2 May 2002 10:43:41 -0700

For the following code:
(1)
   int main()
   {
      do {
      }
      while (1);
   }

the command
   'indent -kr -cdw'

produces
(2)
   int main()
   {
      do {
      }
      while (1);
   }

I expected:
(3)
   int main()
   {
      do {
      } while (1);
   }

Running the same command on (3) doesn't change the file, as I would expect.

Chris Thornburg
mailto:address@hidden





reply via email to

[Prev in Thread] Current Thread [Next in Thread]