summaryrefslogtreecommitdiff
path: root/src/devices/grohtml/html-chars.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/grohtml/html-chars.h')
-rwxr-xr-xsrc/devices/grohtml/html-chars.h27
1 files changed, 0 insertions, 27 deletions
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, },
-};