mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix compilation with HAVE_TREE_SITTER
* src/print.c (print_vectorlike_unreadable): Call print_object with new signature.
This commit is contained in:
parent
6c5fd937e4
commit
adfaaecc8f
1 changed files with 2 additions and 2 deletions
|
|
@ -2149,9 +2149,9 @@ print_vectorlike_unreadable (Lisp_Object obj, bool escapeflag, char *buf,
|
|||
print_string (Ftreesit_node_type (obj), printcharfun);
|
||||
print_c_string (delim2, printcharfun);
|
||||
print_c_string (" in ", printcharfun);
|
||||
print_object (Ftreesit_node_start (obj), printcharfun, escapeflag);
|
||||
print_object (Ftreesit_node_start (obj), escapeflag, pc);
|
||||
printchar ('-', printcharfun);
|
||||
print_object (Ftreesit_node_end (obj), printcharfun, escapeflag);
|
||||
print_object (Ftreesit_node_end (obj), escapeflag, pc);
|
||||
printchar ('>', printcharfun);
|
||||
return;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue