Hi!

Anybody knows how to set comments indentation as well as code lines? For
example, change following block
for(int i = 0; i < num; i++)
{
// comment here
   if (s[i] == const)
   {
// find something
      flag = true;
      break;
   }
}

to

for(int i = 0; i < num; i++)
{
   // comment here
   if (s[i] == const)
   {
      // find something
      flag = true;
      break;
   }
}


Thanks and best regards

Lei, Li
_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to