Bugfix - make F8 work
Этот коммит содержится в:
родитель
b058121a8b
Коммит
889f743aac
@ -1,3 +1,8 @@
|
|||||||
|
Thu Nov 5 12:10:10 1998 Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
|
||||||
|
|
||||||
|
* file.c (panel_operate): check for null pointer before passing it
|
||||||
|
to mc_setctl
|
||||||
|
|
||||||
Wed Nov 4 17:51:43 1998 Pavel Roskin <pavel_roskin@geocities.com>
|
Wed Nov 4 17:51:43 1998 Pavel Roskin <pavel_roskin@geocities.com>
|
||||||
|
|
||||||
* src/findme.h: added from popt-1.2 by RedHat
|
* src/findme.h: added from popt-1.2 by RedHat
|
||||||
|
@ -2342,7 +2342,8 @@ panel_operate (void *source_panel, int operation, char *thedefault)
|
|||||||
/* We do not want to trash cache every time file is
|
/* We do not want to trash cache every time file is
|
||||||
created/touched. However, this will make our cache contain
|
created/touched. However, this will make our cache contain
|
||||||
invalid data. */
|
invalid data. */
|
||||||
mc_setctl (dest, MCCTL_WANT_STALE_DATA, NULL);
|
if (dest)
|
||||||
|
mc_setctl (dest, MCCTL_WANT_STALE_DATA, NULL);
|
||||||
ftpfs_hint_reread (0);
|
ftpfs_hint_reread (0);
|
||||||
|
|
||||||
/* Now, let's do the job */
|
/* Now, let's do the job */
|
||||||
@ -2491,7 +2492,8 @@ panel_operate (void *source_panel, int operation, char *thedefault)
|
|||||||
clean_up:
|
clean_up:
|
||||||
/* Clean up */
|
/* Clean up */
|
||||||
destroy_op_win ();
|
destroy_op_win ();
|
||||||
mc_setctl (dest, MCCTL_NO_STALE_DATA, NULL);
|
if (dest)
|
||||||
|
mc_setctl (dest, MCCTL_NO_STALE_DATA, NULL);
|
||||||
ftpfs_hint_reread (1);
|
ftpfs_hint_reread (1);
|
||||||
free_linklist (&linklist);
|
free_linklist (&linklist);
|
||||||
free_linklist (&dest_dirs);
|
free_linklist (&dest_dirs);
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user