diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-encodings.c | 9 | ||||
-rw-r--r-- | embed/ephy-encodings.h | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/embed/ephy-encodings.c b/embed/ephy-encodings.c index c50ba19c2..c66adde85 100644 --- a/embed/ephy-encodings.c +++ b/embed/ephy-encodings.c @@ -457,6 +457,15 @@ ephy_encoding_info_free (EphyEncodingInfo *info) } } +gboolean +ephy_encoding_info_is_automatic (EphyEncodingInfo *info) +{ + g_return_val_if_fail (info != NULL, FALSE); + + return (info->encoding_source < EMBED_ENCODING_PARENT_FORCED) + && (info->forced_encoding == NULL || info->forced_encoding[0] == '\0'); +} + EphyEncodings * ephy_encodings_new (void) { diff --git a/embed/ephy-encodings.h b/embed/ephy-encodings.h index 6832b160c..9a565344a 100644 --- a/embed/ephy-encodings.h +++ b/embed/ephy-encodings.h @@ -146,6 +146,8 @@ GList *ephy_encodings_get_recent (EphyEncodings *encodings); void ephy_encoding_info_free (EphyEncodingInfo *info); +gboolean ephy_encoding_info_is_automatic (EphyEncodingInfo *info); + G_END_DECLS #endif |