emacs意外的gt / lt行为

时间:2017-07-18 19:01:24

标签: c++ emacs indentation

我在c ++中遇到emacs缩进问题

if (a.x < b ||
    a.x > c) {
    lll = 1;
}

缩进为

if (a.x < b ||
          a.x > c) {
    lll = 1;
}

显然它将其视为模板参数。如果a不是结构,则表示如果(x <10 || x> 20)按预期工作,则不会发生。

这是次要但令人讨厌的事情。我的emacs版本是23。

0 个答案:

没有答案