This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/TMS320F28335: How to stop source formatter from moving semicolon after macro to next line

Guru 20035 points
Part Number: TMS320F28335

Tool/software: Code Composer Studio

Hello,

How can I stop the formatter from moving the semicolon to the next line, as shown below.

Thanks,
Stephen

//Before formatting
int x,y;
#define abc  x = 2; y = 2


int main()
{
     abc;
}


//After formatting
int x,y;
#define abc  x = 2; y = 2


int main()
{
     abc
     ;
}