aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/parse-types.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hyper/parse-types.c')
-rw-r--r--src/hyper/parse-types.c39
1 files changed, 38 insertions, 1 deletions
diff --git a/src/hyper/parse-types.c b/src/hyper/parse-types.c
index b1ed2c0c..503aff3b 100644
--- a/src/hyper/parse-types.c
+++ b/src/hyper/parse-types.c
@@ -51,7 +51,6 @@
#include "hyper.h"
#include "lex.h"
#include "extent.h"
-#include "hterror.h"
#include "all_hyper_proto.H1"
@@ -60,6 +59,44 @@ boolean gInIf = FALSE;
boolean gInItems = FALSE;
boolean gInOptional = FALSE;
+
+static char *errmess[] = {
+ "place holder",
+ "parsing condition node",
+ "unrecognized keyword"
+};
+
+
+/*
+ * htperror(): arguments: msg - like perror it accepts an error
+ * message to be printed errno - the errno which occurred. This is so an
+ * appropriate error message can be printed.
+ *
+ * The prints out the page name, and then the filename in which the error
+ * occurred. If possible it also tries to print out the next ten tokens.
+ */
+
+static void
+htperror(char *msg, int erno)
+{
+ char obuff[256];
+
+ /* The first thing I do is create the error message */
+
+ if (erno <= Numerrors) {
+ sprintf(obuff, "%s:%s\n", msg, errmess[errno]);
+ }
+ else {
+ sprintf(obuff, "%s:\n", msg);
+ fprintf(stderr, "Unknown error type %d\n", erno);
+ }
+ fprintf(stderr, "%s", obuff);
+
+ print_page_and_filename();
+
+ print_next_ten_tokens();
+}
+
void
parse_ifcond(void)
{