From: Yuan Fu Date: Wed, 21 Sep 2022 01:01:15 +0000 (-0700) Subject: Rename treesit-expand-query/pattern X-Git-Tag: emacs-29.0.90~1886 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55e01229dafad75affbe49446f2aef3fbca2f3a8;p=emacs.git Rename treesit-expand-query/pattern * src/treesit.c (treesit-expand-pattern): Rename to treesit-patter-expand. (treesit-expand-query): Rename to treesit-query-expand. (make_ts_query): Use new name. --- diff --git a/src/treesit.c b/src/treesit.c index 2b3ab643fa7..775f823fb3e 100644 --- a/src/treesit.c +++ b/src/treesit.c @@ -627,7 +627,7 @@ make_ts_query (Lisp_Object query, const TSLanguage *language, uint32_t *error_offset, TSQueryError *error_type) { if (CONSP (query)) - query = Ftreesit_expand_query (query); + query = Ftreesit_query_expand (query); char *source = SSDATA (query); TSQuery *ts_query = ts_query_new (language, source, strlen (source), @@ -1360,11 +1360,9 @@ If any one of NODE1 and NODE2 is nil, return nil. */) /*** Query functions */ -/* If we decide to pre-load tree-sitter.el, maybe we can implement - this function in Lisp. */ -DEFUN ("treesit-expand-pattern", - Ftreesit_expand_pattern, - Streesit_expand_pattern, 1, 1, 0, +DEFUN ("treesit-pattern-expand", + Ftreesit_pattern_expand, + Streesit_pattern_expand, 1, 1, 0, doc: /* Expand PATTERN to its string form. PATTERN can be @@ -1406,16 +1404,16 @@ explanation. */) if (VECTORP (pattern) || CONSP (pattern)) return concat3 (opening_delimeter, Fmapconcat (intern_c_string - ("treesit-expand-pattern"), + ("treesit-pattern-expand"), pattern, build_pure_c_string (" ")), closing_delimiter); return CALLN (Fformat, build_pure_c_string("%S"), pattern); } -DEFUN ("treesit-expand-query", - Ftreesit_expand_query, - Streesit_expand_query, 1, 1, 0, +DEFUN ("treesit-query-expand", + Ftreesit_query_expand, + Streesit_query_expand, 1, 1, 0, doc: /* Expand sexp QUERY to its string form. A PATTERN in QUERY can be @@ -1438,7 +1436,7 @@ Consult Info node `(elisp)Pattern Matching' form detailed explanation. */) (Lisp_Object query) { - return Fmapconcat (intern_c_string ("treesit-expand-pattern"), + return Fmapconcat (intern_c_string ("treesit-pattern-expand"), query, build_pure_c_string (" ")); } @@ -1922,8 +1920,8 @@ dynamic libraries, in that order. */); defsubr (&Streesit_node_descendant_for_range); defsubr (&Streesit_node_eq); - defsubr (&Streesit_expand_pattern); - defsubr (&Streesit_expand_query); + defsubr (&Streesit_pattern_expand); + defsubr (&Streesit_query_expand); defsubr (&Streesit_query_compile); defsubr (&Streesit_query_capture); }