First changes in 0.5wip: correct some grammar (it's vs. its).

This commit is contained in:
Olaf Seibert 2016-02-21 21:13:50 +01:00
parent 2a14ffe251
commit a685d341c5
11 changed files with 15 additions and 11 deletions

View File

@ -1,3 +1,6 @@
??.??.201?: Rhialto
version 0.5:
09.11.2015: Rhialto
version 0.4:
- Fixed various bugs. The most notable was extensive use-

1
TODO
View File

@ -1,3 +1,4 @@
.packed pdf page 80
listing format errors: ignore whitespace of input

View File

@ -553,7 +553,7 @@ int eval_undefined(
}
/* push_cond - a new conditional (.IF) block has been activated. Push
it's context. */
its context. */
void push_cond(
int ok,
@ -731,7 +731,7 @@ void write_globals(
if (ident)
gsd_ident(&gsd, ident);
/* write out each PSECT with it's global stuff */
/* write out each PSECT with its global stuff */
/* Sections must be written out in the order that they
appear in the assembly file. */
for (isect = 0; isect < sector; isect++) {

View File

@ -59,7 +59,7 @@ EX_TREE *xfer_address = NULL; /* The transfer address */
SYMBOL *current_pc; /* The current program counter */
unsigned last_dot_addr; /* Last coded PC... */
SECTION *last_dot_section; /* ...and it's program section */
SECTION *last_dot_section; /* ...and its program section */
/* The following are dummy psects for symbols which have meaning to
the assembler: */

View File

@ -67,7 +67,7 @@ extern EX_TREE *xfer_address; /* The transfer address */
extern SYMBOL *current_pc; /* The current program counter */
extern unsigned last_dot_addr; /* Last coded PC... */
extern SECTION *last_dot_section; /* ...and it's program section */
extern SECTION *last_dot_section; /* ...and its program section */
/* The following are dummy psects for symbols which have meaning to
the assembler: */

View File

@ -3,12 +3,12 @@
#include "git-info.h"
#define BASE_VERSION "0.4"
#define BASE_VERSION "0.5wip"
#if defined(GIT_VERSION)
#define VERSIONSTR BASE_VERSION" ("GIT_VERSION"\n\t"GIT_AUTHOR_DATE")"
#else
#define VERSIONSTR BASE_VERSION" (21 June 2015)"
#define VERSIONSTR BASE_VERSION" (xx xxxx 2016)"
/*#define VERSIONSTR "0.3 (April 21, 2009)" */
/*#define VERSIONSTR "0.2 July 15, 2001" */
#endif

View File

@ -591,7 +591,7 @@ MACRO *new_macro(
return mac;
}
/* free a macro, it's args, it's text, etc. */
/* free a macro, its args, its text, etc. */
void free_macro(
MACRO *mac)
{

2
mlb.c
View File

@ -278,7 +278,7 @@ BUFFER *mlb_entry(
return buf;
}
/* mlb_extract - walk thru a macro library and store it's contents
/* mlb_extract - walk thru a macro library and store its contents
into files in the current directory.
See, I had decided not to bother writing macro library maintenance

View File

@ -786,7 +786,7 @@ void text_complex_begin(
}
/* text_complex_fit checks if a complex expression will fit and
returns a pointer to it's location */
returns a pointer to its location */
static char *text_complex_fit(
TEXT_COMPLEX *tx,

View File

@ -29,7 +29,7 @@ typedef struct rept_stream {
/* rept_stream_gets gets a line from a repeat stream. At the end of
each count, the coutdown is decreated and the stream is reset to
it's beginning. */
its beginning. */
char *rept_stream_gets(
STREAM *str)

View File

@ -97,7 +97,7 @@ void free_sym(
free(sym);
}
/* remove_sym removes a symbol from it's symbol table. */
/* remove_sym removes a symbol from its symbol table. */
void remove_sym(
SYMBOL *sym,