Index: kit/CHANGELOG
diff -u kit/CHANGELOG:1.9 kit/CHANGELOG:removed
--- kit/CHANGELOG:1.9	Sat Sep  5 00:11:21 1998
+++ kit/CHANGELOG	Sun Jan 20 16:12:59 2008
@@ -1,51 +0,0 @@
-CHANGELOG for magicpoint
-$Id: CHANGELOG,v 1.9 1998/09/04 15:11:21 onoe Exp $
-
-Fri Sep  5 1998  onoe@sm.sony.co.jp
-	* handle key inputs from invoked terminal as pressed on Xserver,
-	  even if the Xserver is running on a remote host.
-
-Mon Aug 26 1998  itojun@iijlab.net
-	* new copyright. (BSDish copyright without clause 3)
-
-Mon Aug 25 1998  itojun@iijlab.net
-	* print.c: better x11/freetype/vflib -> postscript font mapping.
-
-Mon Aug 23 1998  kato@wide.ad.jp
-	* embedded image support (added mgpembed.pl and embed.c)
-
-Mon Aug 22 1998  itojun@iijlab.net
-	* added contrib/xmindpath, MindPath PocketPoint user-level driver.
-
-Fri Jul 10 11:57:59 JST 1998  itojun@iijlab.net
-	* cache gs-generated image file.
-	  Suggested by: luigi@FreeBSD.org
-
-Mon Jul  6 11:38:32 JST 1998  itojun@iijlab.net
-	* capable of handling GB2312 and KSC5601 encoding.
-	  they must be encoded by using iso-2022 like escape sequences.
-	  EUC-cn or EUC-kr does not work.
-	* -x option is added.
-
-Thu Jul  2 18:04:16 JST 1998  itojun@iijlab.net
-	* eliminate gsview.
-	* revamp "xfont" directive. (see SYNTAX for detail)
-
-Thu Jun 25 13:10:28 JST 1998  itojun@iijlab.net
-	* print.c: color postscript support by "mgp2ps -c".
-
-changes between 1.02a and 1.03a:
-	* To allow color name that has space inbetween ("dark blue"), 
-	  color name after directives SHOULD come with doublequote.
-	  Therefore,
-		%fore blue
-	  should be
-		%fore "blue"
-	  At this moment, doublequote can be ommitted for backward
-	  compatibility.  We may require to have doublequote in the future.
-	  Font names and other string parameter obeys the same rule.
-	* %image is now capable of rendering encapsulated postscript files
-	  (*.eps).
-		%image foo.eps
-	  should work fine.
-	  By using -X option, you can specify device name for ghostscript.
Index: kit/RELNOTES
diff -u kit/RELNOTES:1.15 kit/RELNOTES:1.16
--- kit/RELNOTES:1.15	Tue Jan 15 04:22:01 2008
+++ kit/RELNOTES	Sat Jan 19 02:43:20 2008
@@ -18,7 +18,7 @@
 
 * add -g option for mgp2ps to allow users to adjust line distanc
 
-* add -clkonzoon option for newimage
+* add -zoomonclk option for newimage
 
 * allow to handle gif format images by default 
 
Index: kit/SYNTAX
diff -u kit/SYNTAX:1.45 kit/SYNTAX:1.46
--- kit/SYNTAX:1.45	Mon Jan 14 05:21:42 2008
+++ kit/SYNTAX	Sat Jan 19 02:43:20 2008
@@ -1,4 +1,4 @@
-$Id: SYNTAX,v 1.45 2008/01/13 20:21:42 nishida Exp $
+$Id: SYNTAX,v 1.46 2008/01/18 17:43:20 nishida Exp $
 
 placement restriction for directives:
 		.mgprc		preamble	main pages
@@ -240,7 +240,7 @@
         -rotate degrees
 		degrees is angle measure counter clockwise, supported values are
 		0, -90, 90, -180, 180, 270
-		-clkonzoom percentage
+		-zoomonclk percentage
 		enlarge image when it is clicked. Percentage is against the screen. 
 		"100" means screen width.
 
Index: kit/ctlwords.pl
diff -u kit/ctlwords.pl:1.2 kit/ctlwords.pl:removed
--- kit/ctlwords.pl:1.2	Sat Sep  5 06:05:08 1998
+++ kit/ctlwords.pl	Sun Jan 20 16:12:59 2008
@@ -1,12 +0,0 @@
-#! /usr/bin/perl
-$counter = 0;	# 0 origin
-print "/* generated by ctlwords.awk. do not edit by hand. */\n";
-
-while (<>) {
-	next if (!/^\/\*CTL\*\//);
-	next if ($_ !~ /(CTL_[A-Z0-9]+)/);
-
-	$word = $1;
-	print "#define $word\t$counter\n";
-	$counter++;
-}
Index: kit/draw.c
diff -u kit/draw.c:1.243 kit/draw.c:1.244
--- kit/draw.c:1.243	Mon Jan 14 05:22:16 2008
+++ kit/draw.c	Sat Jan 19 02:43:20 2008
@@ -26,7 +26,7 @@
  * SUCH DAMAGE.
  */
 /*
- * $Id: draw.c,v 1.243 2008/01/13 20:22:16 nishida Exp $
+ * $Id: draw.c,v 1.244 2008/01/18 17:43:20 nishida Exp $
  */
 
 #include "mgp.h"
@@ -691,7 +691,7 @@
 #if 1  /* by h.kakugawa@computer.org */
 			image_load_ps(state, cp->ctm_fname, cp->ctm_numcolor,
 				cp->ctm_ximagesize, cp->ctm_yimagesize, 0,
-				cp->ctm_zoomflag, 0, cp->ctm_raise, cp->ctm_rotate, cp->ctm_clkonzoom);
+				cp->ctm_zoomflag, 0, cp->ctm_raise, cp->ctm_rotate, cp->ctm_zoomonclk);
 #else
 			image_load_ps(state, cp->ctm_fname, cp->ctm_numcolor,
 				cp->ctm_ximagesize, cp->ctm_yimagesize, 0,
@@ -701,7 +701,7 @@
 #if 1  /* by h.kakugawa@computer.org */
 			image_load(state, cp->ctm_fname, cp->ctm_numcolor,
 				cp->ctm_ximagesize, cp->ctm_yimagesize, 0,
-				cp->ctm_zoomflag, 0, cp->ctm_raise, cp->ctm_rotate, cp->ctm_clkonzoom);
+				cp->ctm_zoomflag, 0, cp->ctm_raise, cp->ctm_rotate, cp->ctm_zoomonclk);
 #else
 			image_load(state, cp->ctm_fname, cp->ctm_numcolor,
 				cp->ctm_ximagesize, cp->ctm_yimagesize, 0,
@@ -1814,13 +1814,13 @@
 
 #ifdef USE_IMLIB
 static int
-obj_new_image2(state, x, y, image, xzoom, yzoom, imimage, clkonzoom)
+obj_new_image2(state, x, y, image, xzoom, yzoom, imimage, zoomonclk)
 	struct render_state *state;
 	int x, y;
 	Image *image;
 	int xzoom, yzoom;
 	ImlibImage *imimage;
-	int clkonzoom;
+	int zoomonclk;
 {
 	struct render_object *obj;
 
@@ -1837,7 +1837,7 @@
 	obj->descent = image->height * yzoom / 100;	/*XXX*/
 	obj->vertloc = VL_TOP;
 	obj->data.image.imimage = imimage;
-	obj->data.image.clkonzoom = clkonzoom;
+	obj->data.image.zoomonclk = zoomonclk;
 	return 1;
 }
 #endif
@@ -2115,7 +2115,7 @@
 		x, y, xim->width, xim->height);
 
 #ifdef USE_IMLIB
-	if (obj->data.image.clkonzoom) {
+	if (obj->data.image.zoomonclk) {
 		regist_zimage_position(obj, x, y, xim->width, xim->height, page);
 	}
 #endif
@@ -3188,7 +3188,7 @@
 
 
 static void
-image_load(state, filename, numcolor, ximagesize, yimagesize, backflag, zoomflag, centerflag, raise, rotate, clkonzoom)
+image_load(state, filename, numcolor, ximagesize, yimagesize, backflag, zoomflag, centerflag, raise, rotate, zoomonclk)
 	struct render_state *state;
 	char *filename;
 	int numcolor;
@@ -3199,7 +3199,7 @@
 	int centerflag;
 	int raise;
 	int rotate;
-	int clkonzoom;
+	int zoomonclk;
 {
 	Image *image, *myimage;
 	Pixmap mypixmap;
@@ -3374,7 +3374,7 @@
 	imimage = search_imdata(filename);
 	obj_new_image2(state, state->linewidth + image_posx,
 		- height * yzoomrate / 100 / 2,
-		myimage, xzoomrate, yzoomrate, imimage, clkonzoom);
+		myimage, xzoomrate, yzoomrate, imimage, zoomonclk);
 #else
 	obj_new_image(state, state->linewidth + image_posx,
 		- height * yzoomrate / 100 / 2,
@@ -3390,7 +3390,7 @@
 }
 
 static void
-image_load_ps(state, filename, numcolor, ximagesize, yimagesize, backflag, zoomflag, centerflag, raise, rotate,clkonzoom)
+image_load_ps(state, filename, numcolor, ximagesize, yimagesize, backflag, zoomflag, centerflag, raise, rotate,zoomonclk)
 	struct render_state *state;
 	char *filename;
 	int numcolor;
@@ -3401,7 +3401,7 @@
 	int centerflag;
 	int raise;
 	int rotate;
-	int clkonzoom;
+	int zoomonclk;
 {
 	int x1, y1, x2, y2;
 	static Cursor curs;
@@ -3471,8 +3471,8 @@
 	imagefile = epstoimage(state, fullname, x1, y1, width, height, xzoom,
 		yzoom);
 #else
-	if (clkonzoom) 
-		zratio = (float) clkonzoom / 100.0 * window_width / width;
+	if (zoomonclk) 
+		zratio = (float) zoomonclk / 100.0 * window_width / width;
 	else 
 		zratio = 1.0;
 	imagefile = epstoimage(state, fullname, x1, y1, 
@@ -3492,10 +3492,10 @@
 	}
 #ifndef USE_IMLIB 
 	image_load(state, imagefile, numcolor, 100, 100, backflag,
-		Z_NORMAL | (Z_NORMAL << Z_YSHIFT), centerflag, raise, rotate, clkonzoom);
+		Z_NORMAL | (Z_NORMAL << Z_YSHIFT), centerflag, raise, rotate, zoomonclk);
 #else
 	image_load(state, imagefile, numcolor, 100.0 /zratio, 100.0/zratio, backflag,
-		Z_NORMAL | (Z_NORMAL << Z_YSHIFT), centerflag, raise, rotate, clkonzoom);
+		Z_NORMAL | (Z_NORMAL << Z_YSHIFT), centerflag, raise, rotate, zoomonclk);
 #endif
 	/* XXX: unlink imagefile in /tmp */
 	if ((p = strrchr(imagefile, '/')) != NULL)
@@ -5545,7 +5545,7 @@
 		return;
 	}
 	zimage[i] = obj->data.image.imimage;
-	zonzoom[i] = obj->data.image.clkonzoom;
+	zonzoom[i] = obj->data.image.zoomonclk;
 	zx[i] = x;
 	zy[i] = y;
 	zwidth[i] = width;
Index: kit/grammar.y
diff -u kit/grammar.y:1.49 kit/grammar.y:1.50
--- kit/grammar.y:1.49	Sat Dec 29 05:31:26 2007
+++ kit/grammar.y	Sat Jan 19 02:43:20 2008
@@ -27,7 +27,7 @@
  * SUCH DAMAGE.
  */
 /*
- * $Id: grammar.y,v 1.49 2007/12/28 20:31:26 nishida Exp $
+ * $Id: grammar.y,v 1.50 2008/01/18 17:43:20 nishida Exp $
  */
 /*
  * partly derived from lbl libpcap source code, which has the following
@@ -358,7 +358,7 @@
 	ct->ctm_zoomflag = Z_NORMAL | (Z_NORMAL << Z_YSHIFT);
 	ct->ctm_raise = 0;
 	ct->ctm_rotate = 0;
-	ct->ctm_clkonzoom = 0;
+	ct->ctm_zoomonclk = 0;
 
 	for (p = arg; p; p = p->ct_next) {
 		if (p->ctc_value[0] != '-')
@@ -414,12 +414,12 @@
 		} else if (strcmp(p->ctc_value, "-rotate") == 0 && p->ct_next) {
 			p = p->ct_next;
 			ct->ctm_rotate = atoi(p->ctc_value);
-		} else if (strcmp(p->ctc_value, "-clkonzoom") == 0 && p->ct_next) {
+		} else if (strcmp(p->ctc_value, "-zoomonclk") == 0 && p->ct_next) {
 			p = p->ct_next;
 #ifdef USE_IMLIB
-			ct->ctm_clkonzoom = atoi(p->ctc_value);
+			ct->ctm_zoomonclk = atoi(p->ctc_value);
 #else
-			fprintf(stderr, "warning: cannot use -clkonzoom option in this configuration\n");
+			fprintf(stderr, "warning: cannot use -zoomonclk option in this configuration\n");
 #endif
 		} else {
 			yyerror("invalid argument %s specified for newimage",
Index: kit/mgp.h
diff -u kit/mgp.h:1.145 kit/mgp.h:1.146
--- kit/mgp.h:1.145	Sat Dec 29 05:31:26 2007
+++ kit/mgp.h	Sat Jan 19 02:43:20 2008
@@ -26,7 +26,7 @@
  * SUCH DAMAGE.
  */
 /*
- * $Id: mgp.h,v 1.145 2007/12/28 20:31:26 nishida Exp $
+ * $Id: mgp.h,v 1.146 2008/01/18 17:43:20 nishida Exp $
  */
 
 #include <stdio.h>
@@ -246,7 +246,7 @@
 	u_int ct_zoomflag;
 	u_int ct_raise;
 	u_int ct_rotate; /* +/-180, +/-90, 0, 270 */
-	u_int ct_clkonzoom; 
+	u_int ct_zoomonclk; 
 #define Z_XMASK		0x0f
 #define Z_YMASK		0xf0
 #define Z_YSHIFT	4
@@ -346,7 +346,7 @@
 #define ctm_zoomflag	ct_val.ctrl_image.ct_zoomflag
 #define ctm_raise	ct_val.ctrl_image.ct_raise
 #define ctm_rotate	ct_val.ctrl_image.ct_rotate
-#define ctm_clkonzoom	ct_val.ctrl_image.ct_clkonzoom
+#define ctm_zoomonclk	ct_val.ctrl_image.ct_zoomonclk
 #define ctd_colors	ct_val.ctrl_grad.colors
 #define ctd_g_colors	ct_val.ctrl_grad.ct_g_colors
 #define ctd_numcolor	ct_val.ctrl_grad.ct_numcolor
@@ -506,7 +506,7 @@
 			Image *image;
 			float xzoom, yzoom;
 #ifdef USE_IMLIB
-			int clkonzoom;
+			int zoomonclk;
 			ImlibImage *imimage;
 #endif
 		} image;
Index: kit/image/Imakefile.in
diff -u kit/image/Imakefile.in:1.12 kit/image/Imakefile.in:1.13
--- kit/image/Imakefile.in:1.12	Mon Dec  3 18:08:40 2007
+++ kit/image/Imakefile.in	Wed Jan 16 20:32:44 2008
@@ -27,11 +27,11 @@
 
 AllTarget($(TARGET))
 DependTarget()
-SpecialObjectRule(window.o,window.c,$(DEFS))
+SpecialObjectRule(window.o,window.c,$(DEFS) $(OPTFLAGS))
 SpecialObjectRule(gif.o,gif.c,$(DEFS) $(OPTFLAGS))
 SpecialObjectRule(imagetypes.o,imagetypes.c,$(DEFS))
 #SpecialObjectRule(png.o,png.c,$(DEFS) $(OPTFLAGS))
-SpecialObjectRule(imlib_loader.o,imlib_loader.c,$(DEFS))
+SpecialObjectRule(imlib_loader.o,imlib_loader.c,$(DEFS) $(OPTFLAGS))
 
 #ifndef NullParameter
 #define  NullParameter 
Index: kit/image/gif.h
diff -u kit/image/gif.h:1.2 kit/image/gif.h:removed
--- kit/image/gif.h:1.2	Mon Dec 28 17:23:03 1998
+++ kit/image/gif.h	Sun Jan 20 16:12:59 2008
@@ -1,72 +0,0 @@
-/* gif.h:
- *
- * gifin.h
- * kirk johnson
- * november 1989
- * external interface to gifin.c
- *
- * Copyright 1989 Kirk L. Johnson (see the included file
- * "kljcpyrght.h" for complete copyright information)
- */
-
-/*
- * gifin return codes
- */
-#define GIFIN_SUCCESS       0   /* success */
-#define GIFIN_DONE          1   /* no more images */
-
-#define GIFIN_ERR_BAD_SD   -1   /* bad screen descriptor */
-#define GIFIN_ERR_BAD_SEP  -2   /* bad image separator */
-#define GIFIN_ERR_BAD_SIG  -3   /* bad signature */
-#define GIFIN_ERR_EOD      -4   /* unexpected end of raster data */
-#define GIFIN_ERR_EOF      -5   /* unexpected end of input stream */
-#define GIFIN_ERR_FAO      -6   /* file already open */
-#define GIFIN_ERR_IAO      -7   /* image already open */
-#define GIFIN_ERR_NFO      -8   /* no file open */
-#define GIFIN_ERR_NIO      -9   /* no image open */
-
-/*
- * colormap indices 
- */
-
-#define GIF_RED  0
-#define GIF_GRN  1
-#define GIF_BLU  2
-
-/*
- * typedef BYTE for convenience
- */
-
-typedef unsigned char BYTE;
-
-static int gifin_open_file();
-static int gifin_open_image();
-static int gifin_get_pixel();
-#if 0
-static int gifin_close_image();
-#endif
-static int gifin_close_file();
-static int gifin_load_cmap();
-static int gifin_skip_extension();
-static int gifin_read_data_block();
-static int gifin_push_string();
-static void gifin_add_string();
-static void gifin_fatal();
-
-/* #defines, typedefs, and such
- */
-
-#define GIF_SIG      "GIF87a"
-#define GIF_SIG_89   "GIF89a"
-#define GIF_SIG_LEN  6          /* GIF signature length */
-#define GIF_SD_SIZE  7          /* GIF screen descriptor size */
-#define GIF_ID_SIZE  9          /* GIF image descriptor size */
-
-#define GIF_SEPARATOR   ','     /* GIF image separator */
-#define GIF_EXTENSION   '!'     /* GIF extension block marker */
-#define GIF_TERMINATOR  ';'     /* GIF terminator */
-
-#define STAB_SIZE  4096         /* string table size */
-#define PSTK_SIZE  4096         /* pixel stack size */
-
-#define NULL_CODE  -1           /* string table null code */
Index: kit/image/imlib_loader.c
diff -u kit/image/imlib_loader.c:1.6 kit/image/imlib_loader.c:1.7
--- kit/image/imlib_loader.c:1.6	Mon Jan 14 04:46:55 2008
+++ kit/image/imlib_loader.c	Wed Jan 16 23:52:14 2008
@@ -62,7 +62,7 @@
 #if 0
 	Imlib_kill_image(id, im);
 #else
-	regist_imdata(fullname, im);
+	regist_imdata(name, im);
 #endif
 	
 	return image;
Index: kit/sample/cloud.gif
Index: kit/sample/dad.gif
Index: kit/sample/dns-jp.mgp
diff -u kit/sample/dns-jp.mgp:1.5 kit/sample/dns-jp.mgp:removed
--- kit/sample/dns-jp.mgp:1.5	Fri Sep  4 21:33:18 1998
+++ kit/sample/dns-jp.mgp	Sun Jan 20 16:12:59 2008
@@ -1,130 +0,0 @@
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%%	This file is automatically created from the file
-%%	main.pre modified at Fri Jan 23 14:31:24 1998
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%include "default.mgp"
-%% "noop" cancels definitions in default.mgp
-%default 1 left, size 7, fore "light yellow", back "blue4", font "standard", ccolor "white", vgap 35
-%default 2 noop
-%default 3 fore "white", bar "gray70", vgap 10
-%default 4 noop
-%tab 1 noop
-%tab 2 noop
-%tab 3 noop
-%%%
-%page
-%nodefault
-%fore "red", back "blue4", size 9, vgap 15
-%center, fore "yellow", font "thick"
-%ccolor "white"
-
-
-
-Root DNS `M' $B$K$D$$$F(B
-
-%size 6, fore "red", font "thick"
-$B2CF#(B   $BO/(B
-
-%size 5, fore "white", font "standard"
-$BEl5~Bg3XBg7?7W;;5!%;%s%?!<(B
-
-
-%font "typewriter"
-kato@wide.ad.jp
-%font "standard"
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  $B7P0^(B (1)
-%fore "red", size 6, font "thick"
-   $B!y(B Root DNS
-%fore "white", size 5, font "standard"
-       $B!&(B $B#9Bf$G1?MQ(B
-%fore "white", size 5, font "standard"
-          $B!](B $B#8Bf$,(B US
-          $B!](B Stockholm $B$K#1Bf(B
-%fore "white", size 5, font "standard"
-       $B!&(B $B:GBg$G#1#3Bf(B
-%fore "white", size 5, font "standard"
-          $B!](B $B%Q%1%C%HD9$N@)Ls(B
-%fore "red", size 6, font "thick"
-   $B!y(B Root DNS $B$N1?MQ4p=`(B
-%fore "white", size 5, font "standard"
-       $B!&(B RFC 2010
-       $B!&(B gTLD $B$H$N4X78(B
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  $B7P0^(B (2)
-%fore "red", size 6, font "thick"
-   $B!y(B IEPG $B$G3HD%$r8!F$(B
-   $B!y(B $B%h!<%m%C%QCO0h(B
-%fore "white", size 5, font "standard"
-       $B!&(B LINX $B$K?7@_(B : 1997 $BG/(B 4 $B7n(B
-%fore "white", size 5, font "standard"
-          $B!](B RIPE/NCC $B$,4IM}(B
-          $B!](B `K'
-%fore "red", size 6, font "thick"
-   $B!y(B $B%"%8%"B@J?MNCO0h(B
-%fore "white", size 5, font "standard"
-       $B!&(B NSPIXP-2 $B!'(B 1997 $BG/(B 8 $B7n(B
-%fore "white", size 5, font "standard"
-          $B!](B WIDE $B$,4IM}(B
-          $B!](B `M'
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  `M'
-%fore "red", size 6, font "thick"
-   $B!y(B $B9=@.(B
-%fore "white", size 5, font "standard"
-       $B!&(B $B#2Bf$N(B PentiumPro 200MHz
-       $B!&(B Primary/Backup$B!"(B $B<+F0@Z$jBX$((B
-%fore "red", size 6, font "thick"
-   $B!y(B Root-only $B%5!<%P(B
-%fore "white", size 5, font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-202.12.27.33
-%font "standard"
-       $B!&(B 400 $B!A(B 500 query/sec
-%fore "red", size 6, font "thick"
-   $B!y(B $B1?MQ4IM}(B
-%fore "white", size 5, font "standard"
-       $B!&(B WIDE $B$*$h$S(B ISP $BM-;V(B
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%page
-
-%back "blue4"
-  $B$*4j$$(B
-%fore "red", size 6, font "thick"
-   $B!y(B $B:G?7$N(B root.cache $B$NF~$l49$((B
-%fore "white", size 5, font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-1997082200
-%fore "red", size 6, font "thick"
-   $B!y(B Named $B$N99?7(B
-%fore "white", size 5, font "standard"
-       $B!&(B 4.9.6/8.8.1
-%fore "red", size 6, font "thick"
-   $B!y(B $BM7$P$J$$$G!'(B
-%fore "white", size 5, font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-ping/traceroute
-%font "standard"
-       $B!&(B 
-%cont, font "typewriter"
-telnet/spray/...
-%fore "red", size 6, font "thick"
-   $B!y(B Thanks to
-%fore "white", size 5, font "standard"
-       $B!&(B $BF|K\(B Cisco/$BB?$/$N(B ISP
-       $B!&(B `M' $B4IM}%0%k!<%W(B
Index: kit/sample/mgp-old1.gif
Index: kit/sample/mgp-old2.gif
Index: kit/sample/mgp-old3.gif
Index: kit/sample/mgp1.gif
Index: kit/sample/mgp2.gif
Index: kit/sample/mgp3.gif
Index: kit/sample/sample.mgp
diff -u kit/sample/sample.mgp:1.35 kit/sample/sample.mgp:1.36
--- kit/sample/sample.mgp:1.35	Wed Jan  9 02:54:05 2008
+++ kit/sample/sample.mgp	Sat Jan 19 02:43:20 2008
@@ -314,13 +314,13 @@
 Enlarging Images in Slides
 
 	You can enlarge images by clicking on them 
-		Use -clkonzoom option in %newimage
+		Use -zoomonclk option in %newimage
 		Click the following image to see this feature
 
 
 
 
-%center, newimage -xscrzoom 20 -clkonzoom 87 "cloud.jpg"
+%center, newimage -xscrzoom 20 -zoomonclk 87 "cloud.jpg"
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %PAGE
 %bgrad 0 0 256 0 0 "skyblue" "white"
Index: kit/sample/v6header.gif
