Getting rid of the MOZILLA_NO_FULLCIRCLE hack.

This commit is contained in:
mcafee%netscape.com 1998-09-04 03:01:54 +00:00
parent 5a48b1be66
commit 1177abfef7

View File

@ -5358,17 +5358,6 @@ static void fe_check_use_async_dns(void)
XP_Bool fe_enable_fullcircle(void)
{
XP_Bool fullcircle_enable = TRUE;
char * c = getenv ("MOZILLA_NO_FULLCIRCLE");
/* Look for MOZILLA_NO_FULLCIRCLE first */
if (c && *c)
{
/* Just in case make sure the var is not [fF0] (for funky logic) */
if (*c != 'f' && *c != 'F' && *c != '0')
{
return False;
}
}
/* Check the pref next */
PREF_GetBoolPref("general.fullcircle_enable", &fullcircle_enable);