From c478f3d9469c09773097eba89342c311ee70a319 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 5 Aug 2002 10:31:35 +0000 Subject: Rename Buttress to Halibut. I _think_ I've caught everything in this pass. [originally from svn r1800] --- error.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'error.c') diff --git a/error.c b/error.c index 4f7524c..6d8dd13 100644 --- a/error.c +++ b/error.c @@ -1,16 +1,16 @@ /* - * error.c: buttress error handling + * error.c: Halibut error handling */ #include #include #include -#include "buttress.h" +#include "halibut.h" /* * Error flags */ -#define PREFIX 0x0001 /* give `buttress:' prefix */ +#define PREFIX 0x0001 /* give `halibut:' prefix */ #define FILEPOS 0x0002 /* give file position prefix */ static void do_error(int code, va_list ap) { @@ -192,7 +192,7 @@ static void do_error(int code, va_list ap) { } if (flags & PREFIX) - fputs("buttress: ", stderr); + fputs("halibut: ", stderr); if (flags & FILEPOS) { fprintf(stderr, "%s:%d:", fpos.filename, fpos.line); if (fpos.col > 0) -- cgit v1.1