1
1

Fixed version in ncdu.1, and filenames ending with a tilde are now also hidden with the 'h'-key

git-svn-id: svn://blicky.net/ncdu/trunk@24 ce56bc8d-f834-0410-b703-f827bd498a76
Этот коммит содержится в:
yorhel 2007-08-07 09:38:54 +00:00
родитель 2533cb196d
Коммит 70f7adecda
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,5 @@
." Text automatically generated by txt2man ." Text automatically generated by txt2man
.TH NCDU 1 "July 21, 2007" "ncdu-1.2" "ncdu manual" .TH NCDU 1 "July 21, 2007" "ncdu-svn" "ncdu manual"
.SH NAME .SH NAME
\fBncdu \fP- NCurses Disk Usage \fBncdu \fP- NCurses Disk Usage
.SH SYNOPSIS .SH SYNOPSIS

Просмотреть файл

@ -145,7 +145,7 @@ char *graph(off_t max, off_t size) {
#define exlhid(x) if(bflags & BF_HIDE && (\ #define exlhid(x) if(bflags & BF_HIDE && (\
(!(x->flags & FF_PAR) && x->name[0] == '.')\ (!(x->flags & FF_PAR) && (x->name[0] == '.' || x->name[strlen(x->name)-1] == '~'))\
|| x->flags & FF_EXL)\ || x->flags & FF_EXL)\
) { i--; continue; } ) { i--; continue; }