diff options
author | Yuan Fu <casouri@gmail.com> | 2023-03-05 15:01:54 -0800 |
---|---|---|
committer | Yuan Fu <casouri@gmail.com> | 2023-03-05 15:01:54 -0800 |
commit | 7292b24c80143d697870a670963f136db375580b (patch) | |
tree | 75b99ee711fe97143bf92139b6effb055a94ae3d /test/lisp/progmodes/c-ts-mode-resources | |
parent | 75cdc1afbe5a649eed02cd186a38d40b3d0a4439 (diff) | |
download | emacs-7292b24c80143d697870a670963f136db375580b.tar.gz emacs-7292b24c80143d697870a670963f136db375580b.tar.bz2 emacs-7292b24c80143d697870a670963f136db375580b.zip |
Fix c-ts-mode indentation
Not the subject of it, but mentioned in bug#61893.
* lisp/progmodes/c-ts-mode.el (c-ts-mode--anchor-prev-sibling): Skip
the sibling if it doesn't start on it's own line.
* test/lisp/progmodes/c-ts-mode-resources/indent.erts: New test.
Diffstat (limited to 'test/lisp/progmodes/c-ts-mode-resources')
-rw-r--r-- | test/lisp/progmodes/c-ts-mode-resources/indent.erts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/lisp/progmodes/c-ts-mode-resources/indent.erts b/test/lisp/progmodes/c-ts-mode-resources/indent.erts index 904c6498cb5..77bfeb5ad6e 100644 --- a/test/lisp/progmodes/c-ts-mode-resources/indent.erts +++ b/test/lisp/progmodes/c-ts-mode-resources/indent.erts @@ -402,3 +402,19 @@ int main() | } =-=-= + +Name: Prev-Sibling But Not Trailing Comment + +=-= +static int +required_matrix_height (struct window *w) +{ +#ifdef HAVE_WINDOW_SYSTEM + if (FRAME_WINDOW_P (f)) + { + return 0; + } +#endif /* Don't align to this comment. */ + | +} +=-=-= |