Cleanup, cleanup .. removed libxml softlink for good cleanup to get 100%

Cleanup, cleanup ..
* configure.in Makefile.am: removed libxml softlink for good
* include/libxml/*.h *.c doc/Makefile.am: cleanup to get
  100% coverage by gtk-doc
Daniel
diff --git a/list.c b/list.c
index 0e05789..b0acf7d 100644
--- a/list.c
+++ b/list.c
@@ -226,7 +226,7 @@
 }
 
 /**
- * xmlListLinkReverseSearch:
+ * xmlListReverseSearch:
  * @l:  a list
  * @data:  a search value
  *
@@ -404,6 +404,8 @@
  * xmlListEmpty:
  * @l:  a list
  *
+ * Is the list empty ?
+ *
  * Returns 1 if the list is empty, 0 otherwise
  */
 int
@@ -416,6 +418,8 @@
  * xmlListFront:
  * @l:  a list
  *
+ * Get the first element in the list
+ *
  * Returns the first element in the list, or NULL
  */
 xmlLinkPtr 
@@ -425,9 +429,11 @@
 }
     
 /**
- * xmlListFront:
+ * xmlListEnd:
  * @l:  a list
  *
+ * Get the last element in the list
+ *
  * Returns the last element in the list, or NULL
  */
 xmlLinkPtr 
@@ -440,6 +446,8 @@
  * xmlListSize:
  * @l:  a list
  *
+ * Get the number of elements in the list
+ *
  * Returns the number of elements in the list
  */
 int
@@ -603,6 +611,7 @@
  * xmlListWalk:
  * @l:  a list
  * @walker:  a processing function
+ * @user:  a user parameter passed to the walker function
  *
  * Walk all the element of the first from first to last and
  * apply the walker function to it
@@ -621,6 +630,7 @@
  * xmlListReverseWalk:
  * @l:  a list
  * @walker:  a processing function
+ * @user:  a user parameter passed to the walker function
  *
  * Walk all the element of the list in reverse order and
  * apply the walker function to it