Removed (pretty inconsistently used) tab chars from source code base.

This commit is contained in:
Oliver Schmidt
2013-05-09 13:56:54 +02:00
parent 44fd1082ae
commit 85885001b1
1773 changed files with 62864 additions and 62868 deletions

View File

@@ -1,8 +1,8 @@
/*****************************************************************************/
/* */
/* fragment.h */
/* fragment.h */
/* */
/* Code/data fragment routines */
/* Code/data fragment routines */
/* */
/* */
/* */
@@ -47,7 +47,7 @@
/*****************************************************************************/
/* Forwards */
/* Forwards */
/*****************************************************************************/
@@ -58,7 +58,7 @@ struct Section;
/*****************************************************************************/
/* Data */
/* Data */
/*****************************************************************************/
@@ -66,20 +66,20 @@ struct Section;
/* Fragment structure */
typedef struct Fragment Fragment;
struct Fragment {
Fragment* Next; /* Next fragment in list */
struct ObjData* Obj; /* Source of fragment */
Fragment* Next; /* Next fragment in list */
struct ObjData* Obj; /* Source of fragment */
struct Section* Sec; /* Section for this fragment */
unsigned Size; /* Size of data/expression */
struct ExprNode* Expr; /* Expression if FRAG_EXPR */
unsigned Size; /* Size of data/expression */
struct ExprNode* Expr; /* Expression if FRAG_EXPR */
Collection LineInfos; /* Line info for this fragment */
unsigned char Type; /* Type of fragment */
unsigned char LitBuf [1]; /* Dynamically alloc'ed literal buffer */
unsigned char Type; /* Type of fragment */
unsigned char LitBuf [1]; /* Dynamically alloc'ed literal buffer */
};
/*****************************************************************************/
/* Code */
/* Code */
/*****************************************************************************/