diff options
author | Yuan Fu <casouri@gmail.com> | 2023-03-05 15:22:36 -0800 |
---|---|---|
committer | Yuan Fu <casouri@gmail.com> | 2023-03-05 15:22:36 -0800 |
commit | 1c67e4f895faf895f3ff132261edcbe6d08bb91d (patch) | |
tree | 2eee93fac27d630ddb7770442e8cd06be2568577 /test/lisp/progmodes/c-ts-mode-resources | |
parent | d724d7d6785db7224b5a9f04b092d8671bddd290 (diff) | |
download | emacs-1c67e4f895faf895f3ff132261edcbe6d08bb91d.tar.gz emacs-1c67e4f895faf895f3ff132261edcbe6d08bb91d.tar.bz2 emacs-1c67e4f895faf895f3ff132261edcbe6d08bb91d.zip |
Fix c-ts-mode indentation
Mentioned in bug#61893.
* lisp/progmodes/c-ts-mode.el (c-ts-mode--anchor-prev-sibling): Handle
"#elif" and "#else".
* test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts: Add an
"#elif" to the test.
Diffstat (limited to 'test/lisp/progmodes/c-ts-mode-resources')
-rw-r--r-- | test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts b/test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts index a82596e0010..ce753b5b3ea 100644 --- a/test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts +++ b/test/lisp/progmodes/c-ts-mode-resources/indent-preproc.erts @@ -89,6 +89,9 @@ int main() { #else if (f->output_method == output_termcap) create_tty_output (f); +#elif defined (HAVE_X_WINDOWS) /* X without toolkit. */ + if (FRAME_WINDOW_P (f)) + {} #endif t->display_info.tty->top_frame = selected_frame; change_frame_size (); |