1999-05-29 Miguel de Icaza <miguel@nuclecu.unam.mx>

* treestore.c (should_skip_directory): Add fix from Wayne Roberts
	to actually acknowledge the settings of mc.global.
This commit is contained in:
Miguel de Icaza 1999-05-29 18:29:00 +00:00
parent 9c0597b6a3
commit 85c64a94bb
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1999-05-29 Miguel de Icaza <miguel@nuclecu.unam.mx>
* treestore.c (should_skip_directory): Add fix from Wayne Roberts
to actually acknowledge the settings of mc.global.
1999-05-24 Brandon S. Allbery <allbery@ece.cmu.edu>
* subshell.c (pty_open_master): Added missing comma.p

View File

@ -786,7 +786,7 @@ should_skip_directory (char *dir)
}
for (l = special_dirs; l; l = l->next){
if (strcmp (dir, l->data) == 0)
if (strncmp (dir, l->data, strlen (l->data)) == 0)
return TRUE;
}
return FALSE;