diff options
Diffstat (limited to 'git_part.c')
-rw-r--r-- | git_part.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |