mirror of
https://github.com/urbit/shrub.git
synced 2025-01-03 10:02:32 +03:00
Ignore #file#, which are emacs temp work files.
This commit is contained in:
parent
f31b460052
commit
56b0892ba9
@ -359,7 +359,10 @@ _unix_scan_mount_point(u3_umon* mon_u)
|
||||
else {
|
||||
if ( '.' != out_u->d_name[len_w]
|
||||
|| '\0' == out_u->d_name[len_w + 1]
|
||||
|| '~' == out_u->d_name[strlen(out_u->d_name) - 1] ) {
|
||||
|| '~' == out_u->d_name[strlen(out_u->d_name) - 1]
|
||||
|| ('#' == out_u->d_name[0] &&
|
||||
'#' == out_u->d_name[strlen(out_u->d_name) - 1])
|
||||
) {
|
||||
free(pax_c);
|
||||
continue;
|
||||
}
|
||||
@ -895,6 +898,8 @@ _unix_update_dir(u3_udir* dir_u)
|
||||
if ( !S_ISDIR(buf_u.st_mode) ) {
|
||||
if ( !strchr(out_u->d_name,'.')
|
||||
|| '~' == out_u->d_name[strlen(out_u->d_name) - 1]
|
||||
|| ('#' == out_u->d_name[0] &&
|
||||
'#' == out_u->d_name[strlen(out_u->d_name) - 1])
|
||||
) {
|
||||
free(pax_c);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user