bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#60463: 29.0.60; c-ts-mode: M-x align doesn't work


From: Mohammed Sadiq
Subject: bug#60463: 29.0.60; c-ts-mode: M-x align doesn't work
Date: Sun, 01 Jan 2023 15:50:48 +0530

M-x align doesn't align function arguments or struct members, which
works fine in c-mode.

Say for example, if I mark the region around '(' and ')' and do M-x
align for the following code:

int
main (int argc,
      char *argv[])
{
}


I should get the following (see the change of spacing between 'int' and 'argc'):

int
main (int   argc,
      char *argv[])
{
}


Modifying align-c++-modes to include c-ts-mode should be enough to fix this.





reply via email to

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