all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#74612: 30.0.90; [PATCH] Allow passing nil to treesit-node-match-p
@ 2024-11-30  0:38 Yuan Fu
  2024-11-30  7:22 ` Eli Zaretskii
  0 siblings, 1 reply; 6+ messages in thread
From: Yuan Fu @ 2024-11-30  0:38 UTC (permalink / raw)
  To: 74612

[-- Attachment #1: Type: text/plain, Size: 164 bytes --]

Eli, are you ok with this patch on emacs-30? Almost all tree-sitter node functions allows user to pass nil for NODE, so treesit-node-match-p should too.

Yuan


[-- Attachment #2: treesit-node-match-p.patch --]
[-- Type: application/octet-stream, Size: 1301 bytes --]

From 9ab20d03e30e46e2b8502877de68eec0b511d3da Mon Sep 17 00:00:00 2001
From: Yuan Fu <casouri@gmail.com>
Date: Fri, 29 Nov 2024 16:33:28 -0800
Subject: [PATCH] Allow passing nil to treesit-node-match-p

* src/treesit.c (Ftreesit_node_match_p): Return nil if NODE is nil.
---
 src/treesit.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/treesit.c b/src/treesit.c
index 4031d80f7c9..cda6d4af2ee 100644
--- a/src/treesit.c
+++ b/src/treesit.c
@@ -4017,7 +4017,8 @@ DEFUN ("treesit-node-match-p",
 `treesit-thing-settings', or a predicate, like regexp matching node
 type, etc.  See `treesit-thing-settings' for more details.
 
-Return non-nil if NODE matches PREDICATE, nil otherwise.
+Return non-nil if NODE matches PREDICATE, nil otherwise.  If NODE is
+nil, return nil.
 
 Signals `treesit-invalid-predicate' if there's no definition of THING
 in `treesit-thing-settings', or if PREDICATE is malformed.  If
@@ -4025,6 +4026,8 @@ DEFUN ("treesit-node-match-p",
 definition, but still signal for malformed PREDICATE.  */)
   (Lisp_Object node, Lisp_Object predicate, Lisp_Object ignore_missing)
 {
+  if (NILP (node)) return Qnil;
+
   CHECK_TS_NODE (node);
 
   Lisp_Object parser = XTS_NODE (node)->parser;
-- 
2.39.5 (Apple Git-151)


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-12-06  7:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-30  0:38 bug#74612: 30.0.90; [PATCH] Allow passing nil to treesit-node-match-p Yuan Fu
2024-11-30  7:22 ` Eli Zaretskii
2024-12-01  8:31   ` Yuan Fu
2024-12-01  9:59     ` Eli Zaretskii
2024-12-05  9:43       ` Eli Zaretskii
2024-12-06  7:24         ` Yuan Fu

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.