Public bug reported:

Binary package hint: indent

i try to get correct indetation thanks indent tools, then i get the following 
issue with -kr option : 
/*original*/
for(Q10 = 0; Q10 < 8; Q10++ )//3 bits
{
        Q[10]=tempq10;Q[9]=tempq9;Q[13]=tempq13;x[4]=tempx4;x[15]=tempx15;
        Q[20]=tempq20;Q[21]=tempq21;
  

/*rewrite*/

for (Q10 = 0; Q10 < 8; Q10++)   //3 bits
        {
            
Q[10] = tempq10;
            Q[9] = tempq9;
            Q[13] = tempq13;
            x[4] = tempx4;
            x[15] = tempx15;
            
Q[20] = tempq20;
            Q[21] = tempq21;
            
/**/


i am disappointed by the following issue with macro
/** original */
#define GGx(a, b, c, d, x, s, ac) { \
 (a) = G ((b), (c), (d)) + (a) + (x) + (unsigned long)(ac); \
 (a) = RL ((a), (s)); \
 (a) += (b); \
 }


/* gnu indent work (new lines ?)*/
#define GGx(a, b, c, d, x, s, ac) { \
    (a) = G((b), (c), (d)) + (a) + (x) + (unsigned long) (ac);
\
(a) = RL((a), (s));
\
(a) += (b);
\
} 


/***/

** Affects: indent (Ubuntu)
     Importance: Undecided
         Status: Unconfirmed

-- 
indent don't works
https://bugs.launchpad.net/bugs/110850
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to