diff options
author | Yuan Fu <casouri@gmail.com> | 2023-03-07 16:35:23 -0800 |
---|---|---|
committer | Yuan Fu <casouri@gmail.com> | 2023-03-07 16:42:44 -0800 |
commit | f9b7913656f9e4728a1140b61ddb7f07009e28e6 (patch) | |
tree | 0f98f734586cb9e76c2c225ef143369c04359192 /test/lisp/progmodes/c-ts-mode-resources | |
parent | 90504f9d8982c12a033286fe06b40583f553d267 (diff) | |
download | emacs-f9b7913656f9e4728a1140b61ddb7f07009e28e6.tar.gz emacs-f9b7913656f9e4728a1140b61ddb7f07009e28e6.tar.bz2 emacs-f9b7913656f9e4728a1140b61ddb7f07009e28e6.zip |
Fix empty line indentation in c-ts-mode (bug#61997)
* lisp/progmodes/c-ts-mode.el:
(c-ts-mode--indent-styles): Handle the empty line case.
* test/lisp/progmodes/c-ts-mode-resources/indent.erts: New test.
* doc/lispref/modes.texi (Parser-based Indentation): Update manual.
* lisp/treesit.el (treesit-simple-indent-presets): Support null as
a value for NODE-TYPE in the 'match' matcher.
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 77bfeb5ad6e..9e28ef203fd 100644 --- a/test/lisp/progmodes/c-ts-mode-resources/indent.erts +++ b/test/lisp/progmodes/c-ts-mode-resources/indent.erts @@ -418,3 +418,19 @@ required_matrix_height (struct window *w) | } =-=-= + +Name: Empty Line + +=-= +int +main (void) +{ +| +} +=-= +int +main (void) +{ + | +} +=-=-= |