]> git.eshelyaron.com Git - emacs.git/commitdiff
Change free to xfree in treesit.el
authorYuan Fu <casouri@gmail.com>
Tue, 18 Oct 2022 00:31:23 +0000 (17:31 -0700)
committerYuan Fu <casouri@gmail.com>
Tue, 18 Oct 2022 00:31:23 +0000 (17:31 -0700)
This should be in the last commit but I forgot.

* src/treesit.c (Ftreesit_parser_set_included_ranges): Change free to
xfree.

src/treesit.c

index 5994f6c263d763a0fd34235e960a2c06a03709d2..b0b20e8b255c5eb4acc2e29ee1016eeef1451bf8 100644 (file)
@@ -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)