summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGalin Simeonov <gts@volconst.com>2021-10-01 14:18:24 +0300
committerGalin Simeonov <gts@volconst.com>2021-10-01 14:18:24 +0300
commite3cfdf92a401dc4750a1a52b1b872b085995f34b (patch)
treef8d57a7a7c4e51ace3e9646b69e8b06fa3913afc
parent6a8bbbf82e21d90ef3609aae5046aef54024b5e0 (diff)
downloadvolgit-e3cfdf92a401dc4750a1a52b1b872b085995f34b.tar.gz
replaced | to ā”‚
-rw-r--r--git_part.c6
1 files 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;i<out->indentation;++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);