Bite the bullet and convert tabs to spaces. Previously yasm's source has
been using a mix of tabs and 4 spaces to indent; this looks horrible if
tab size is ever not 8. While I debated converting to tab-only indentation
that would have been a far higher impact to the source.
svn path=/trunk/yasm/; revision=1825
diff --git a/libyasm/assocdat.h b/libyasm/assocdat.h
index 5cce0e7..0941526 100644
--- a/libyasm/assocdat.h
+++ b/libyasm/assocdat.h
@@ -41,8 +41,8 @@
/*@only@*/ yasm__assoc_data *yasm__assoc_data_create(void);
/** Get associated data for a data callback.
- * \param assoc_data container of associated data
- * \param callback callback used when adding data
+ * \param assoc_data container of associated data
+ * \param callback callback used when adding data
* \return Associated data (NULL if none).
*/
/*@dependent@*/ /*@null@*/ void *yasm__assoc_data_get
@@ -51,9 +51,9 @@
/** Add associated data to a associated data container.
* \attention Deletes any existing associated data for that data callback.
- * \param assoc_data container of associated data
- * \param callback callback
- * \param data data to associate
+ * \param assoc_data container of associated data
+ * \param callback callback
+ * \param data data to associate
*/
/*@only@*/ yasm__assoc_data *yasm__assoc_data_add
(/*@null@*/ /*@only@*/ yasm__assoc_data *assoc_data,
@@ -66,6 +66,6 @@
/** Print all associated data in a container. */
void yasm__assoc_data_print(const yasm__assoc_data *assoc_data, FILE *f,
- int indent_level);
+ int indent_level);
#endif