Your message dated Fri, 24 Jul 2009 20:20:25 +0200 (CEST)
with message-id <[email protected]>
has caused the report #535601,
regarding Indent changes file twice when called twice
to be marked as having been forwarded to the upstream software
author(s) [email protected]
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
535601: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535601
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Hello.
I received this from the Debian bug system:
---------- Forwarded message ----------
From: Joachim Zobel <[email protected]>
To: [email protected]
Date: Fri, 03 Jul 2009 08:12:49 +0200
Subject: Bug#535601: Indent changes file twice when called twice
Package: indent
Version: 2.2.10-1
Severity: normal
We have found that indent changes some files back and forth. Here is an
example that reproduces the problem:
jzo...@test$ cp test_indent.c test_indent.c.org
jzo...@test$ indent -kr --no-tabs test_indent.c
jzo...@test$ diff test_indent.c test_indent.c.org
18,19c18,19
< return
bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->
< bar->bar->bar->bar->bar;
---
> return bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->
> bar->bar->bar->bar->bar->bar;
jzo...@test$ indent -kr --no-tabs test_indent.c
jzo...@test$ diff test_indent.c test_indent.c.org
jzo...@test$
Sincerely,
Joachim
/*
***********************************************************************
* *
* Test for an indent bug. *
* *
***********************************************************************
*/
/*
Test for an indent bug
*/
void foo()
{
return bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->bar->
bar->bar->bar->bar->bar->bar;
}
--- End Message ---