avoid weird bug from e_remember where path that no longer exists would attempt to be loaded

SVN revision: 55911
This commit is contained in:
Mike Blumenkrantz 2011-01-06 00:57:27 +00:00
parent cb3651fdf0
commit cdc41d0f3a
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ _e_mod_action_fileman_cb(E_Object *obj,
e_fwin_new(zone->container, "/", params);
else if (params && params[0] == '~')
e_fwin_new(zone->container, "~/", params + 1);
else if (params)
else if (params && strcmp(params, "(none)")) /* avoid matching paths that no longer exist */
{
char *path;
path = e_util_shell_env_path_eval(params);