]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix treesit-simple-indent-presets docstring (bug#67007)
authorYuan Fu <casouri@gmail.com>
Thu, 9 Nov 2023 07:46:32 +0000 (23:46 -0800)
committerYuan Fu <casouri@gmail.com>
Thu, 9 Nov 2023 07:49:15 +0000 (23:49 -0800)
* lisp/treesit.el (treesit-simple-indent-presets): Fix docstring.
* doc/lispref/modes.texi (Parser-based Indentation): Fix example.

doc/lispref/modes.texi
lisp/treesit.el

index 4a54d6ec29091cac8fa1d5b8fd4b859cfb3a3be8..8cdbe1149cabbae47357eacbe4311ffbb71dcebf 100644 (file)
@@ -5087,7 +5087,7 @@ this matcher doesn't check that argument.  For example, to match the
 first child where parent is @code{argument_list}, use
 
 @example
-(match nil "argument_list" nil nil 0 0)
+(match nil "argument_list" nil 0 0)
 @end example
 
 In addition, @var{node-type} can be a special value @code{null},
index c37e7b6b5b77ddd9288c254b96f55543090d64f6..962a6fc3cf8fd32b2d7fd1dc76a361b55cd9ae28 100644 (file)
@@ -1322,7 +1322,7 @@ MATCHER:
     NODE's index in PARENT.  Therefore, to match the first child
     where PARENT is \"argument_list\", use
 
-        (match nil \"argument_list\" nil nil 0 0).
+        (match nil \"argument_list\" nil 0 0).
 
     NODE-TYPE, PARENT-TYPE, and NODE-FIELD are regexps.
     NODE-TYPE can also be `null', which matches when NODE is nil.