diff options
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index cbdbae798ba..04792374cd1 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -573,6 +573,10 @@ struct buffer in the display of this buffer. */ Lisp_Object extra_line_spacing_; +#ifdef HAVE_TREE_SITTER + /* A list of tree-sitter parsers for this buffer. */ + Lisp_Object ts_parser_list_; +#endif /* Cursor type to display in non-selected windows. t means to use hollow box cursor. See `cursor-type' for other values. */ |