aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-09-03 18:42:54 +0000
committercorvid <corvid@lavabit.com>2009-09-03 18:42:54 +0000
commit94f44aa56a1cfc4c7cfdc8aa9574e1a2402e3772 (patch)
tree75fd3209074613dfa2c7f590079c3b6935ab7ba4
parent6d9ff8f4465218ee55ee25c1ae37868a8304b6eb (diff)
don't make prefs defaults visible unnecessarily
-rw-r--r--src/prefs.c12
-rw-r--r--src/prefs.h11
2 files changed, 12 insertions, 11 deletions
diff --git a/src/prefs.c b/src/prefs.c
index 798729f4..e65d8e1a 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -11,6 +11,18 @@
#include "prefs.h"
+#define PREFS_START_PAGE "about:splash"
+#define PREFS_HOME "http://www.dillo.org/"
+#define PREFS_FONT_SERIF "DejaVu Serif"
+#define PREFS_FONT_SANS_SERIF "DejaVu Sans"
+#define PREFS_FONT_CURSIVE "DejaVu Sans" /* TODO: find good default */
+#define PREFS_FONT_FANTASY "DejaVu Sans" /* TODO: find good default */
+#define PREFS_FONT_MONOSPACE "DejaVu Sans Mono"
+#define PREFS_SEARCH_URL "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
+#define PREFS_NO_PROXY "localhost 127.0.0.1"
+#define PREFS_SAVE_DIR "/tmp/"
+#define PREFS_HTTP_REFERER "host"
+
/*-----------------------------------------------------------------------------
* Global Data
*---------------------------------------------------------------------------*/
diff --git a/src/prefs.h b/src/prefs.h
index 9067b564..f3e0a977 100644
--- a/src/prefs.h
+++ b/src/prefs.h
@@ -22,17 +22,6 @@ extern "C" {
#define PREFS_GEOMETRY_DEFAULT_HEIGHT 580
#define PREFS_GEOMETRY_DEFAULT_XPOS -9999
#define PREFS_GEOMETRY_DEFAULT_YPOS -9999
-#define PREFS_START_PAGE "about:splash"
-#define PREFS_HOME "http://www.dillo.org/"
-#define PREFS_FONT_SERIF "DejaVu Serif"
-#define PREFS_FONT_SANS_SERIF "DejaVu Sans"
-#define PREFS_FONT_CURSIVE "DejaVu Sans" /* TODO: find good default */
-#define PREFS_FONT_FANTASY "DejaVu Sans" /* TODO: find good default */
-#define PREFS_FONT_MONOSPACE "DejaVu Sans Mono"
-#define PREFS_SEARCH_URL "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
-#define PREFS_NO_PROXY "localhost 127.0.0.1"
-#define PREFS_SAVE_DIR "/tmp/"
-#define PREFS_HTTP_REFERER "host"
/* Panel sizes */
enum { P_tiny = 0, P_small, P_medium, P_large };