Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/576e93e1f33614003dd87...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/576e93e1f33614003dd876b...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/576e93e1f33614003dd876b93...
The branch, master has been updated
via 576e93e1f33614003dd876b93f2f5bbf8228eeed (commit)
via 91f3eb5c2ffcaf3f3b09ba24069f08a7a953ee0c (commit)
from ea01d6b3fc6ea73de24789797fb3fde5e3a26693 (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=576e93e1f33614003dd...
commit 576e93e1f33614003dd876b93f2f5bbf8228eeed
Merge: 91f3eb5 ea01d6b
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Merge branch 'master' of
git://git.netsurf-browser.org/netsurf
commitdiff
http://git.netsurf-browser.org/netsurf.git/commit/?id=91f3eb5c2ffcaf3f3b0...
commit 91f3eb5c2ffcaf3f3b09ba24069f08a7a953ee0c
Author: Michael Drake <tlsa(a)netsurf-browser.org>
Commit: Michael Drake <tlsa(a)netsurf-browser.org>
Scope reduce a variable.
diff --git a/riscos/url_complete.c b/riscos/url_complete.c
index 889d1da..b15de0f 100644
--- a/riscos/url_complete.c
+++ b/riscos/url_complete.c
@@ -96,7 +96,6 @@ bool ro_gui_url_complete_keypress(struct toolbar *toolbar, uint32_t
key)
wimp_window_state state;
char *match_url;
const char *url;
- int i;
int old_selection;
int height;
os_error *error;
@@ -144,6 +143,7 @@ bool ro_gui_url_complete_keypress(struct toolbar *toolbar, uint32_t
key)
(strcmp(match_url, url_complete_matched_string))) {
/* memorize the current matches */
+ int i;
int lines = MAXIMUM_VISIBLE_LINES;
if (lines > url_complete_matches_available)
lines = url_complete_matches_available;
-----------------------------------------------------------------------
Summary of changes:
riscos/url_complete.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/riscos/url_complete.c b/riscos/url_complete.c
index 889d1da..b15de0f 100644
--- a/riscos/url_complete.c
+++ b/riscos/url_complete.c
@@ -96,7 +96,6 @@ bool ro_gui_url_complete_keypress(struct toolbar *toolbar, uint32_t
key)
wimp_window_state state;
char *match_url;
const char *url;
- int i;
int old_selection;
int height;
os_error *error;
@@ -144,6 +143,7 @@ bool ro_gui_url_complete_keypress(struct toolbar *toolbar, uint32_t
key)
(strcmp(match_url, url_complete_matched_string))) {
/* memorize the current matches */
+ int i;
int lines = MAXIMUM_VISIBLE_LINES;
if (lines > url_complete_matches_available)
lines = url_complete_matches_available;
--
NetSurf Browser