aboutsummaryrefslogtreecommitdiffstats
path: root/z38.c
diff options
context:
space:
mode:
authorJeffrey H. Kingston <jeff@it.usyd.edu.au>2010-09-14 20:39:50 +0000
committerJeffrey H. Kingston <jeff@it.usyd.edu.au>2010-09-14 20:39:50 +0000
commite4836c62b245d618866b6523ec2c892aeb7a76be (patch)
tree5b5269fb7affb3b20ba8fe0224705bbde98c1614 /z38.c
parent128e9a1532ce7fa38ddc16de06d213530dc5ce15 (diff)
downloadlout-e4836c62b245d618866b6523ec2c892aeb7a76be.tar.gz
Lout 3.32.
git-svn-id: http://svn.savannah.nongnu.org/svn/lout/trunk@33 9365b830-b601-4143-9ba8-b4a8e2c3339c
Diffstat (limited to 'z38.c')
-rw-r--r--z38.c24
1 files changed, 20 insertions, 4 deletions
diff --git a/z38.c b/z38.c
index 01077a5..54c6ce3 100644
--- a/z38.c
+++ b/z38.c
@@ -1,7 +1,7 @@
/*@z38.c:Character Mappings:Declarations@*************************************/
/* */
-/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.31) */
-/* COPYRIGHT (C) 1991, 2005 Jeffrey H. Kingston */
+/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.32) */
+/* COPYRIGHT (C) 1991, 2006 Jeffrey H. Kingston */
/* */
/* Jeffrey H. Kingston (jeff@it.usyd.edu.au) */
/* School of Information Technologies */
@@ -58,10 +58,26 @@
MAP_VEC MapTable[MAX_MAP]; /* the mappings */
-static OBJECT notdef_word = nilobj; /* notdef word */
-static int maptop = 1; /* first free slot in MapTable[] */
+static OBJECT notdef_word; /* notdef word */
+static int maptop; /* first free slot in MapTable[] */
/* save 0 for "no mapping" */
+
+/*****************************************************************************/
+/* */
+/* void MapInit(void) */
+/* */
+/* Initialize this module. */
+/* */
+/*****************************************************************************/
+
+void MapInit(void)
+{
+ notdef_word = nilobj;
+ maptop = 1;
+}
+
+
/*****************************************************************************/
/* */
/* static int NameInsert(cname) */