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

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

bug#59966: [PATCH] [Tree-sitter] Align C++ access specifiers to their en


From: Daniel Martín
Subject: bug#59966: [PATCH] [Tree-sitter] Align C++ access specifiers to their enclosing class/struct/union
Date: Sun, 11 Dec 2022 16:19:13 +0100

Tags: patch


The following C++ class is indented differently in c++-mode and
c++-ts-mode:

class Sample {
public:
void sample();
private:
int a;
};

c++-mode indents it like

class Sample {
public:
  void sample();
private:
  int a;
};

c++-ts-mode indents it like

class Sample {
public:
void sample();
private:
int a;
};

I've attached a patch so that C++ classes are indented the same in
c++-mode and c++-ts-mode when the default style is used.

Thanks.

Attachment: 0001-Align-C-access-specifiers-to-their-enclosing-class-s.patch
Description: Text Data


reply via email to

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