From 5721b5b9e63b5030177480f1b02919d0234d4fe7 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Thu, 30 Jul 2026 02:43:12 -0400 Subject: [PATCH] Tweak how unicode is generated. I may still have a quoting/backslash problem here. I might have to expand based upon terminal settings. --- tcshrc.prompt.defs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcshrc.prompt.defs b/tcshrc.prompt.defs index c1dba38..37b164b 100644 --- a/tcshrc.prompt.defs +++ b/tcshrc.prompt.defs @@ -145,8 +145,8 @@ set referencechars_raw="${referencechars_raw} 2620" _debug "Building unicode sigils table...." if( ! $?CSHENV_NO_UNICODE_PRINTF ) then - _debug "${referencechars_raw:as/ /_\U0000/:as/_/ /:as/ 00001/ 0001/}" - set referencechars_original=( `printf "${referencechars_raw:as/ /_\U0000/:as/_/ /:as/ 00001/ 0001/}"` ) + _debug "${referencechars_raw:as/ /_0000/:as/_00001/_0001/:as/_/ \U/:q}" + set referencechars_original=( `printf "${referencechars_raw:as/ /_0000/:as/_00001/_0001/:as/_/ \U/:q}"`) else # Safe fallback for when there's no unicode printf set referencechars_original="A B C D X Y Z"