From 54e65e2f1c944a861a823641ef1b8fe194c7b0d8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 31 Mar 2025 02:33:23 -0400 Subject: Fully move all pattern code into patterns.c --- src/stdlib/c_strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/c_strings.c') diff --git a/src/stdlib/c_strings.c b/src/stdlib/c_strings.c index 7987a234..9d0f2819 100644 --- a/src/stdlib/c_strings.c +++ b/src/stdlib/c_strings.c @@ -16,7 +16,7 @@ public Text_t CString$as_text(const void *c_string, bool colorize, const TypeInf (void)info; if (!c_string) return Text("CString"); Text_t text = Text$from_str(*(const char**)c_string); - return Text$concat(colorize ? Text("\x1b[34mCString\x1b[m(") : Text("CString("), Text$quoted(text, colorize), Text(")")); + return Text$concat(colorize ? Text("\x1b[34mCString\x1b[m(") : Text("CString("), Text$quoted(text, colorize, Text("\"")), Text(")")); } public Text_t CString$as_text_simple(const char *str) -- cgit v1.2.3