Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/7ca75a4cee083ded7f3607bba5e841c430556d93
...commit
http://git.netsurf-browser.org/netsurf.git/commit/7ca75a4cee083ded7f3607bba5e841c430556d93
...tree
http://git.netsurf-browser.org/netsurf.git/tree/7ca75a4cee083ded7f3607bba5e841c430556d93
The branch, master has been updated
via 7ca75a4cee083ded7f3607bba5e841c430556d93 (commit)
from 7fc6e6c0c0053e5ca4f4e09e8f4457a8125a167c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=7ca75a4cee083ded7f3607bba5e841c430556d93
commit 7ca75a4cee083ded7f3607bba5e841c430556d93
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>
RISC OS: Fix hotlist save.
The read and write paths for hotlist are different:
#define CHOICES_PREFIX "<Choices$Write>.WWW.NetSurf."
NSOPTION_STRING(hotlist_path, "NetSurf:Hotlist")
NSOPTION_STRING(hotlist_save, CHOICES_PREFIX "Hotlist")
This switches to using hotlist_save for writing.
diff --git a/frontends/riscos/hotlist.c b/frontends/riscos/hotlist.c
index 5eb3026..ea85bc3 100644
--- a/frontends/riscos/hotlist.c
+++ b/frontends/riscos/hotlist.c
@@ -583,7 +583,7 @@ nserror ro_gui_hotlist_finalise(void)
return NSERROR_OK;
}
- res = hotlist_fini(nsoption_charp(hotlist_path));
+ res = hotlist_fini(nsoption_charp(hotlist_save));
if (res == NSERROR_OK) {
res = ro_corewindow_fini(&hotlist_window->core);
-----------------------------------------------------------------------
Summary of changes:
frontends/riscos/hotlist.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontends/riscos/hotlist.c b/frontends/riscos/hotlist.c
index 5eb3026..ea85bc3 100644
--- a/frontends/riscos/hotlist.c
+++ b/frontends/riscos/hotlist.c
@@ -583,7 +583,7 @@ nserror ro_gui_hotlist_finalise(void)
return NSERROR_OK;
}
- res = hotlist_fini(nsoption_charp(hotlist_path));
+ res = hotlist_fini(nsoption_charp(hotlist_save));
if (res == NSERROR_OK) {
res = ro_corewindow_fini(&hotlist_window->core);
--
NetSurf Browser
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org