Change free to xfree in treesit.el
This should be in the last commit but I forgot. * src/treesit.c (Ftreesit_parser_set_included_ranges): Change free to xfree.
This commit is contained in:
parent
ddae8d4a13
commit
c4122067d9
1 changed files with 1 additions and 1 deletions
|
@ -1361,7 +1361,7 @@ is nil, the PARSER is to parse the whole buffer. */)
|
|||
/* Although XFIXNUM could signal, it should be impossible
|
||||
because we have checked the input by treesit_check_range_argument.
|
||||
So there is no need for unwind-protect. */
|
||||
free (treesit_ranges);
|
||||
xfree (treesit_ranges);
|
||||
}
|
||||
|
||||
if (!success)
|
||||
|
|
Loading…
Add table
Reference in a new issue