On Thu, 2009-08-06 at 10:32 +0000, [email protected] wrote:

> Modified: branches/struggleyb/libdom-remain/src/bootstrap/init_fini.c
> URL: 
> http://source.netsurf-browser.org/branches/struggleyb/libdom-remain/src/bootstrap/init_fini.c?rev=9079&r1=9078&r2=9079&view=diff
> ==============================================================================
> --- branches/struggleyb/libdom-remain/src/bootstrap/init_fini.c (original)
> +++ branches/struggleyb/libdom-remain/src/bootstrap/init_fini.c Thu Aug  6 
> 05:32:21 2009
> @@ -38,7 +38,7 @@
>               return err;
>       }
>  
> -     err = dom_implregistry_dom_implementation_initialise(
> +     err = dom_implregistry_initialise(
>                       alloc, pw);

This can all be on one line.

> Modified: branches/struggleyb/libdom-remain/src/core/attr.c
> URL: 
> http://source.netsurf-browser.org/branches/struggleyb/libdom-remain/src/core/attr.c?rev=9079&r1=9078&r2=9079&view=diff
> ==============================================================================
> --- branches/struggleyb/libdom-remain/src/core/attr.c (original)
> +++ branches/struggleyb/libdom-remain/src/core/attr.c Thu Aug  6 05:32:21 2009
> @@ -102,15 +100,16 @@
>  }
>  
>  /**
> - * Initialis a dom_attr
> - *
> - * \param a          The dom_attr
> - * \param doc        The document
> - * \param name       The name of this attribute node
> - * \param namespace  The namespace of this attribute
> - * \param prefix     The prefix
> - * \param specified  Whether this node is a specified one
> - * \param result     The returned node
> + * Initialise a dom_attr
> + *
> + * \param a          The dom_attr
> + * \param doc        The document
> + * \param name       The name of this attribute node
> + * \param namespace   The namespace of this attribute
> + * \param prefix     The prefix
> + * \param specified   Whether this node is a specified one
> + * \param result     The returned node
> + * \return DOM_NO_ERR on success, appropriate dom_exception on failure

Whitespace.

> Modified: branches/struggleyb/libdom-remain/src/core/node.h
> URL: 
> http://source.netsurf-browser.org/branches/struggleyb/libdom-remain/src/core/node.h?rev=9079&r1=9078&r2=9079&view=diff
> ==============================================================================
> --- branches/struggleyb/libdom-remain/src/core/node.h (original)
> +++ branches/struggleyb/libdom-remain/src/core/node.h Thu Aug  6 05:32:21 2009
> @@ -55,8 +56,8 @@
>       void *vtable;                   /**< The protected vtable */
>  
>       struct lwc_string_s *name;      /**< Node name (this is the local part 
> -                                      * of a QName in the cases where a 
> -                                      * namespace exists) */
> +                                                              * of a QName 
> in the cases where a 
> +                                                              * namespace 
> exists) */

Ditto.

> Modified: branches/struggleyb/libdom-remain/src/core/typeinfo.c
> URL: 
> http://source.netsurf-browser.org/branches/struggleyb/libdom-remain/src/core/typeinfo.c?rev=9079&r1=9078&r2=9079&view=diff
> ==============================================================================
> --- branches/struggleyb/libdom-remain/src/core/typeinfo.c (original)
> +++ branches/struggleyb/libdom-remain/src/core/typeinfo.c Thu Aug  6 05:32:21 
> 2009
> @@ -12,15 +12,19 @@
>  
>  /**
>   * Get the type name of this dom_type_info
>   *
> - * \param ti The dom_type_info
> - * \param ret        The name
> + * \param ti   The dom_type_info
> + * \param ret  The name
> + * \return DOM_NO_ERR on success, appropriate dom_exception on failure.
> + *
> + * We don's support this API now, so this function call always
> + * return DOM_NOT_SUPPORTED_ERR.

"don't" (and for the other occurrences in this file).

Aside from the above, the core branch is now fine to merge into trunk.


J.


Reply via email to