summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c28
1 files changed, 18 insertions, 10 deletions
diff --git a/misc.c b/misc.c
index cb82151..94b41f2 100644
--- a/misc.c
+++ b/misc.c
@@ -43,16 +43,14 @@ char *new_text;
{
int len = strlen( new_text );
- while ( len + action_index + action_offset >= action_size - 10
- /* slop */ )
+ while ( len + action_index >= action_size - 10 /* slop */ )
{
action_size *= 2;
- prolog = action_array =
+ action_array =
reallocate_character_array( action_array, action_size );
- action = &action_array[action_offset];
}
- strcpy( &action[action_index], new_text );
+ strcpy( &action_array[action_index], new_text );
action_index += len;
}
@@ -408,17 +406,27 @@ FILE *output_file;
}
+/* mark_defs1 - mark the current position in the action array as
+ * representing where the user's section 1 definitions end
+ * and the prolog begins
+ */
+void mark_defs1()
+ {
+ defs1_offset = 0;
+ action_array[action_index++] = '\0';
+ action_offset = prolog_offset = action_index;
+ action_array[action_index] = '\0';
+ }
+
+
/* mark_prolog - mark the current position in the action array as
- * representing the action prolog
+ * representing the end of the action prolog
*/
void mark_prolog()
{
- prolog = action_array;
action_array[action_index++] = '\0';
action_offset = action_index;
- action = &action_array[action_offset];
- action_index = 0;
- action[action_index] = '\0';
+ action_array[action_index] = '\0';
}