1999-08-31 Federico Mena Quintero <federico@redhat.com>

* main.c: In the GNOME version, we want cd_symlinks to be FALSE.
	The VFS should never have to look at this variable, but alas, it
	does.  BUGFIX:  Red Hat Bugzilla #2344.

	* setup.c: Disable cd_symlinks in the GNOME version.
This commit is contained in:
Miguel de Icaza 1999-08-31 22:55:18 +00:00
parent 0d0ff8d613
commit b906505dad
3 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,11 @@
1999-08-31 Federico Mena Quintero <federico@redhat.com>
* main.c: In the GNOME version, we want cd_symlinks to be FALSE.
The VFS should never have to look at this variable, but alas, it
does. BUGFIX: Red Hat Bugzilla #2344.
* setup.c: Disable cd_symlinks in the GNOME version.
1999-08-30 Norbert Warmuth <nwarmuth@privat.circular.de>
* main.c (print_mc_usage): Print the bug reporting address.

View File

@ -174,7 +174,11 @@ volatile int quit = 0;
int show_all_if_ambiguous = 0;
/* Set when cd symlink following is desirable (bash mode) */
#ifndef HAVE_GNOME
int cd_symlinks = 1;
#else
int cd_symlinks = 0;
#endif
/* If set then dialogs just clean the screen when refreshing, else */
/* they do a complete refresh, refreshing all the parts of the program */

View File

@ -204,7 +204,9 @@ static struct {
{ "drop_menus", &drop_menus },
{ "wrap_mode", &global_wrap_mode},
{ "old_esc_mode", &old_esc_mode },
#ifndef HAVE_GNOME
{ "cd_symlinks", &cd_symlinks },
#endif
{ "show_all_if_ambiguous", &show_all_if_ambiguous },
{ "have_fast_cpu", &have_fast_cpu },
{ "iconify_on_exec", &iconify_on_exec },