summaryrefslogtreecommitdiff
path: root/riscos/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/window.c')
-rw-r--r--riscos/window.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/riscos/window.c b/riscos/window.c
index 206205a30..8d5da2df9 100644
--- a/riscos/window.c
+++ b/riscos/window.c
@@ -16,6 +16,7 @@
#include "oslib/wimp.h"
#include "oslib/wimpspriteop.h"
#include "netsurf/riscos/about.h"
+#include "netsurf/riscos/constdata.h"
#include "netsurf/riscos/gui.h"
#include "netsurf/riscos/theme.h"
#include "netsurf/utils/log.h"
@@ -703,7 +704,13 @@ bool ro_gui_window_keypress(gui_window *g, int key, bool toolbar)
if (strcasecmp(g->url, "about:") == 0) {
about_create();
browser_window_open_location(g->data.browser.bw,
- "file:///%3CWimp$ScrapDir%3E/WWW/NetSurf/About");
+ ABOUT_URL);
+ } else if (strcasecmp(g->url, "help:") == 0) {
+ browser_window_open_location(g->data.browser.bw,
+ HELP_URL);
+ } else if (strcasecmp(g->url, "home:") == 0) {
+ browser_window_open_location(g->data.browser.bw,
+ HOME_URL);
} else {
char *url = xcalloc(1, 10 + strlen(g->url));
char *url2;