summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--dillorc3
-rw-r--r--src/prefs.c2
-rw-r--r--src/prefs.h1
4 files changed, 1 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 54c60fbe..53d80b59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -66,7 +66,7 @@ dillo-2.1
- Add workaround for fltk bug #2062.
- Reduce number of styleEngine::style0() calls.
- Replace bg_color dillorc option.
- - Remove text_color dillorc option.
+ - Remove text_color and force_my_colors dillorc options.
Patches: Johannes Hofmann
+- Updated the GPL copyright note in the source files.
Patch: Detlef Riekenberg
diff --git a/dillorc b/dillorc
index 89313c08..fe4539d1 100644
--- a/dillorc
+++ b/dillorc
@@ -150,9 +150,6 @@
# If your eyes suffer with white backgrounds, change this.
#allow_white_bg=YES
-# Use the same colors with all documents?
-#force_my_colors=NO
-
# When set to YES, the page author's visited link color may be overridden
# to allow better contrast with text/links/background
#contrast_visited_color=YES
diff --git a/src/prefs.c b/src/prefs.c
index d8d68fca..0419d9b7 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -164,7 +164,6 @@ static int Prefs_parse_dillorc(void)
{ "font_monospace", &prefs.font_monospace, PREFS_STRING },
{ "font_sans_serif", &prefs.font_sans_serif, PREFS_STRING },
{ "font_serif", &prefs.font_serif, PREFS_STRING },
- { "force_my_colors", &prefs.force_my_colors, PREFS_BOOL },
{ "fullwindow_start", &prefs.fullwindow_start, PREFS_BOOL },
{ "geometry", NULL, PREFS_GEOMETRY },
{ "home", &prefs.home, PREFS_URL },
@@ -268,7 +267,6 @@ void a_Prefs_init(void)
prefs.font_monospace = dStrdup(D_FONT_MONOSPACE);
prefs.font_sans_serif = dStrdup(D_FONT_SANS_SERIF);
prefs.font_serif = dStrdup(D_FONT_SERIF);
- prefs.force_my_colors = FALSE;
prefs.fullwindow_start=FALSE;
/* these four constitute the geometry */
diff --git a/src/prefs.h b/src/prefs.h
index e7b88f2b..048ce6fc 100644
--- a/src/prefs.h
+++ b/src/prefs.h
@@ -32,7 +32,6 @@ struct _DilloPrefs {
int32_t link_color;
int32_t visited_color;
bool_t allow_white_bg;
- bool_t force_my_colors;
bool_t contrast_visited_color;
bool_t show_tooltip;
int panel_size;