summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--halibut.h7
-rw-r--r--style.c8
3 files changed, 1 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 27ed0c3..ffbe88b 100644
--- a/Makefile
+++ b/Makefile
@@ -106,7 +106,7 @@ CFLAGS += -I$(LIBCHARSET_SRCDIR) -I$(LIBCHARSET_OBJDIR)
include $(LIBCHARSET_SRCDIR)Makefile
MODULES := main malloc ustring error help licence version misc tree234
-MODULES += input keywords contents index style biblio
+MODULES += input keywords contents index biblio
MODULES += bk_text bk_html bk_whlp bk_man bk_info bk_paper bk_ps bk_pdf
MODULES += winhelp psdata wcwidth
diff --git a/halibut.h b/halibut.h
index ed2a0da..bd9cc69 100644
--- a/halibut.h
+++ b/halibut.h
@@ -35,7 +35,6 @@ typedef struct paragraph_Tag paragraph;
typedef struct word_Tag word;
typedef struct keywordlist_Tag keywordlist;
typedef struct keyword_Tag keyword;
-typedef struct userstyle_Tag userstyle;
typedef struct numberstate_Tag numberstate;
typedef struct indexdata_Tag indexdata;
typedef struct indextag_Tag indextag;
@@ -461,12 +460,6 @@ void number_free(numberstate *);
void gen_citations(paragraph *, keywordlist *);
/*
- * style.c
- */
-struct userstyle_Tag {
-};
-
-/*
* bk_text.c
*/
void text_backend(paragraph *, keywordlist *, indexdata *, void *);
diff --git a/style.c b/style.c
deleted file mode 100644
index 562c594..0000000
--- a/style.c
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- * style.c: load and keep track of user style preferences
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include "halibut.h"
-