]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/treesit.c (treesit_check_node): Don't use non-ASCII comments.
authorEli Zaretskii <eliz@gnu.org>
Mon, 10 Jun 2024 18:24:51 +0000 (21:24 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Jun 2024 09:27:07 +0000 (11:27 +0200)
(cherry picked from commit 2ac85aa6139b151920b08385e7f943e072a1503c)

src/treesit.c

index 9f0eb061056495003408d9ea230c7c285f223b07..54b16eb1bb3b5d44fddd5e875010d60169ede08c 100644 (file)
@@ -433,7 +433,7 @@ static Lisp_Object Vtreesit_str_pred;
    If we think of programs and AST, it is very rare for any program to
    have a very deep AST. For example, you would need 1000+ levels of
    nested if-statements, or a struct somehow nested for 1000+ levels.
-   Its hard for me to imagine any hand-written or machine generated
+   It's hard for me to imagine any hand-written or machine generated
    program to be like that.  So I think 1000 is already generous.  If
    we look at xdisp.c, its AST only have 30 levels.  */
 #define TREESIT_RECURSION_LIMIT 1000