summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-01-24 15:33:36 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-01-24 15:33:36 +0000
commit3f9c311a2ca72a294ce2074b7ea75d4a81d734aa (patch)
tree394e85e430cad2c7783d59164d1799dff3e3d9b2 /modules
parent884144221b7ec0cd819e1530dd2ed797301a39d5 (diff)
downloadpango-3f9c311a2ca72a294ce2074b7ea75d4a81d734aa.tar.gz
Removed, not used for quite a while.
2006-01-24 Behdad Esfahbod <behdad@gnome.org> * modules/indic/pango-indic-script.h: Removed, not used for quite a while.
Diffstat (limited to 'modules')
-rw-r--r--modules/indic/pango-indic-script.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/indic/pango-indic-script.h b/modules/indic/pango-indic-script.h
deleted file mode 100644
index c041c845..00000000
--- a/modules/indic/pango-indic-script.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef __INDIC_SCRIPT__
-#define __INDIC_SCRIPT__
-
-#define RANGE_END (RANGE_START + RANGE_SIZE - 1)
-
-#ifdef ISCII_BASED
-#define VIRAMA (0x4d + RANGE_START)
-#define CANDRA (0x01 + RANGE_START)
-#define ANUSWAR (0x02 + RANGE_START)
-#define NUKTA (0x3c + RANGE_START)
-#define RA (0x30 + RANGE_START)
-#endif
-
-#define SCRIPT_ENGINE_DEFINITION \
- static PangoEngineInfo script_engines[] = \
- { \
- { \
- SCRIPT_STRING "ScriptEngineX", \
- PANGO_ENGINE_TYPE_SHAPE, \
- PANGO_RENDER_TYPE_X, \
- pango_indic_range, G_N_ELEMENTS (pango_indic_range)} \
- }; \
- static gint n_script_engines = G_N_ELEMENTS (script_engines);
-
-#define pango_indic_get_char(chars,end) ( (chars) >= (end) ? 0 : *(chars) )
-
-#endif