summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwlemb <wlemb>2001-04-21 22:17:42 +0000
committerwlemb <wlemb>2001-04-21 22:17:42 +0000
commitccf617c4f92756a67e76e2fe9abee487e36400a9 (patch)
treea820d950f134ac87648f849027fcdf7639ba2873
parent04f82b5d6dc812d99cc5d0b8689de9c13ee1ba20 (diff)
downloadgroff-ccf617c4f92756a67e76e2fe9abee487e36400a9.tar.gz
* src/devices/grohtml/html-chars.h: Removed. It isn't used.
* src/devices/grohtml/Makefile.sub, src/devices/grohtml/post-html.cc: Updated.
-rw-r--r--ChangeLog4
-rw-r--r--src/devices/grohtml/Makefile.sub1
-rwxr-xr-xsrc/devices/grohtml/html-chars.h27
-rw-r--r--src/devices/grohtml/post-html.cc1
4 files changed, 4 insertions, 29 deletions
diff --git a/ChangeLog b/ChangeLog
index 706c2bb9..982ecbf5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,10 @@
* src/include/groff-getopt.h: Don't use variable names in
declarations.
+ * src/devices/grohtml/html-chars.h: Removed. It isn't used.
+ * src/devices/grohtml/Makefile.sub,
+ src/devices/grohtml/post-html.cc: Updated.
+
2001-04-21 Albert Chin-A-Young <china@thewrittenword.com>
* configure.in: Add special check for mkstemp().
diff --git a/src/devices/grohtml/Makefile.sub b/src/devices/grohtml/Makefile.sub
index 2c3a55a5..10f28ce1 100644
--- a/src/devices/grohtml/Makefile.sub
+++ b/src/devices/grohtml/Makefile.sub
@@ -12,5 +12,4 @@ CCSRCS=\
$(srcdir)/output.cc
HDRS=\
$(srcdir)/html.h \
- $(srcdir)/html-chars.h \
$(srcdir)/html-text.h
diff --git a/src/devices/grohtml/html-chars.h b/src/devices/grohtml/html-chars.h
deleted file mode 100755
index f58f8dcc..00000000
--- a/src/devices/grohtml/html-chars.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// -*- C++ -*-
-/* Copyright (C) 2000, 2001 Free Software Foundation, Inc.
- *
- * Gaius Mulley (gaius@glam.ac.uk) wrote output.cc
- * but it owes a huge amount of ideas and raw code from
- * James Clark (jjc@jclark.com) grops/ps.cc.
- *
- * html-chars.h
- *
- * provides a diacritical character combination table for html
- */
-
-
-
-struct diacritical_desc {
- char *mark;
- char *second_troff_char;
- char translation;
-};
-
-
-static struct diacritical_desc diacritical_table[] = {
- { "ad" , "aeiouyAEIOU" , ':' , }, /* */
- { "ac" , "cC" , ',' , }, /* cedilla */
- { "aa" , "aeiouyAEIOU" , '\'' , }, /* acute */
- { NULL , NULL , (char)0, },
-};
diff --git a/src/devices/grohtml/post-html.cc b/src/devices/grohtml/post-html.cc
index 334de85c..aa616f7b 100644
--- a/src/devices/grohtml/post-html.cc
+++ b/src/devices/grohtml/post-html.cc
@@ -27,7 +27,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "stringclass.h"
#include "cset.h"
#include "html.h"
-#include "html-chars.h"
#include "html-text.h"
#include <time.h>