aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2024-06-10 18:49:28 +0200
committerMattias EngdegÄrd2024-06-10 18:50:15 +0200
commitce4e5e6a28182b4559802cd6fa62c68c2b035bc8 (patch)
treefd986c0661762afc6fcbdad8b011b54672def962
parent6d0b1db518855b446ee49ab93f8faa0c24a81510 (diff)
downloademacs-ce4e5e6a28182b4559802cd6fa62c68c2b035bc8.tar.gz
emacs-ce4e5e6a28182b4559802cd6fa62c68c2b035bc8.zip
* src/print.c (print_vectorlike_unreadable): Fix merge accident.
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 6a27ceac5f0..bd1d76b3b1b 100644
--- a/src/print.c
+++ b/src/print.c
@@ -2036,7 +2036,7 @@ print_vectorlike_unreadable (Lisp_Object obj, Lisp_Object printcharfun,
2036 if (!treesit_node_buffer_live_p (obj)) 2036 if (!treesit_node_buffer_live_p (obj))
2037 { 2037 {
2038 print_c_string ("-in-killed-buffer>", printcharfun); 2038 print_c_string ("-in-killed-buffer>", printcharfun);
2039 break; 2039 return;
2040 } 2040 }
2041 printchar (' ', printcharfun); 2041 printchar (' ', printcharfun);
2042 /* Now the node must be up-to-date, and calling functions like 2042 /* Now the node must be up-to-date, and calling functions like