From e3cfdf92a401dc4750a1a52b1b872b085995f34b Mon Sep 17 00:00:00 2001 From: Galin Simeonov Date: Fri, 1 Oct 2021 14:18:24 +0300 Subject: =?UTF-8?q?replaced=20|=20to=20=E2=94=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- git_part.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git_part.c b/git_part.c index 5f2fe7b..670a9ae 100644 --- a/git_part.c +++ b/git_part.c @@ -218,7 +218,7 @@ void print_files_top(int dir_fd,git_commit *top_commit,git_repository *repo) index_file=get_index_file(dir_fd,"index"); if(state.output_is_tree_like) - fprintf(index_file->out,"|\n"); + fprintf(index_file->out,"ā”‚\n"); print_files(index_file,dir_fd,tree,repo); @@ -325,7 +325,7 @@ void print_indentation_for_treelike_output(struct Index_File *out) for(i=0;iindentation;++i) { if(out->branches[i]) - fprintf(out->out,"|"); + fprintf(out->out,"ā”‚"); else fprintf(out->out," "); @@ -355,7 +355,7 @@ void print_files_in_another_index(int base_dir_fd,const char *entry_oid,const ch new_dir_fd=create_dir(base_dir_fd,entry_oid); new_index=get_index_file(new_dir_fd,"index"); if(state.output_is_tree_like) - fprintf(new_index->out,"%s\n|\n",name); + fprintf(new_index->out,"%s\nā”‚\n",name); print_files(new_index,new_dir_fd,tree,repo); release_index_file(new_index); -- cgit v1.2.3