summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/app.c b/src/app.c
index 39636c29..eb8eb16a 100644
--- a/src/app.c
+++ b/src/app.c
@@ -1090,6 +1090,12 @@ iBool handleCommand_App(const char *cmd) {
1090 if (gotoHeading.start) { 1090 if (gotoHeading.start) {
1091 postCommandf_App("document.goto heading:%s", cstr_Rangecc(gotoHeading)); 1091 postCommandf_App("document.goto heading:%s", cstr_Rangecc(gotoHeading));
1092 } 1092 }
1093 const iRangecc gotoUrlHeading = range_Command(cmd, "gotourlheading");
1094 if (gotoUrlHeading.start) {
1095 postCommandf_App("document.goto heading:%s",
1096 cstrCollect_String(urlDecode_String(
1097 collect_String(newRange_String(gotoUrlHeading)))));
1098 }
1093 } 1099 }
1094 else if (equal_Command(cmd, "document.request.cancelled")) { 1100 else if (equal_Command(cmd, "document.request.cancelled")) {
1095 /* TODO: How should cancelled requests be treated in the history? */ 1101 /* TODO: How should cancelled requests be treated in the history? */