Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/3b57deb046a35a8e88fb0db672adf9aac6899aea
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/3b57deb046a35a8e88fb0db672adf9aac6899aea
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/3b57deb046a35a8e88fb0db672adf9aac6899aea

The branch, master has been updated
       via  3b57deb046a35a8e88fb0db672adf9aac6899aea (commit)
      from  87b5fd1bccc28132405fe34e129e1eb1e4b63f5b (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=3b57deb046a35a8e88fb0db672adf9aac6899aea
commit 3b57deb046a35a8e88fb0db672adf9aac6899aea
Author: Michael Drake <michael.dr...@codethink.co.uk>
Commit: Michael Drake <michael.dr...@codethink.co.uk>

    html: list counter style: Constify {pre|post}fix memebers.

diff --git a/content/handlers/html/list_counter_style.c 
b/content/handlers/html/list_counter_style.c
index fc54c6c..e864c9b 100644
--- a/content/handlers/html/list_counter_style.c
+++ b/content/handlers/html/list_counter_style.c
@@ -41,8 +41,8 @@ struct list_counter_style {
                const unsigned int length;
                const symbol_t value;
        } pad;
-       symbol_t prefix;
-       symbol_t postfix;
+       const symbol_t prefix;
+       const symbol_t postfix;
        const symbol_t *symbols; /**< array of symbols which represent this 
style */
        const int *weights; /**< symbol weights for additive schemes */
        const size_t items; /**< items in symbol and weight table */


-----------------------------------------------------------------------

Summary of changes:
 content/handlers/html/list_counter_style.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/handlers/html/list_counter_style.c 
b/content/handlers/html/list_counter_style.c
index fc54c6c..e864c9b 100644
--- a/content/handlers/html/list_counter_style.c
+++ b/content/handlers/html/list_counter_style.c
@@ -41,8 +41,8 @@ struct list_counter_style {
                const unsigned int length;
                const symbol_t value;
        } pad;
-       symbol_t prefix;
-       symbol_t postfix;
+       const symbol_t prefix;
+       const symbol_t postfix;
        const symbol_t *symbols; /**< array of symbols which represent this 
style */
        const int *weights; /**< symbol weights for additive schemes */
        const size_t items; /**< items in symbol and weight table */


-- 
NetSurf Browser
_______________________________________________
netsurf-commits mailing list -- netsurf-commits@netsurf-browser.org
To unsubscribe send an email to netsurf-commits-le...@netsurf-browser.org

Reply via email to