*** empty log message ***
[m17n/m17n-lib.git] / example / mview.c
index 8f1447f..ad5cd42 100644 (file)
@@ -1,5 +1,5 @@
 /* mview.c -- File viewer                              -*- coding: euc-jp; -*-
-   Copyright (C) 2003, 2004
+   Copyright (C) 2003, 2004, 2005, 2006, 2007
      National Institute of Advanced Industrial Science and Technology (AIST)
      Registration Number H15PRO112
 
@@ -17,7 +17,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the m17n library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+   Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    02111-1307, USA.  */
 
 /***en
@@ -45,7 +45,7 @@
 
     <li> -s FONTSIZE
 
-    FONTSIZE is the fontsize in point.  If ommited, it defaults to the
+    FONTSIZE is the fontsize in point.  If omitted, it defaults to the
     size of the default font defined in X resource.
 
     <li> --version
 */
 #ifndef FOR_DOXYGEN
 
-#ifdef HAVE_X11_XAW_COMMAND_H
-
 #include <stdio.h>
 
+#ifdef HAVE_X11_XAW_COMMAND_H
+
 #include <X11/Intrinsic.h>
 #include <X11/StringDefs.h>
 #include <X11/Shell.h>
 #include <X11/Xaw/Command.h>
 #include <X11/Xaw/Viewport.h>
 
-#define VERSION "1.2.0"
-
 /* Global m17n variables.  */
 MFrame *frame;
 MText *mt;
@@ -230,7 +228,7 @@ help_exit (char *prog, int exit_code)
          "ENCODING is the encoding of FILE (defaults to UTF-8).\n");
   printf ("  %-13s %s", "-s FONTSIZE",
          "FONTSIZE is the fontsize in point.\n");
-  printf ("\t\tIf ommited, it defaults to the size\n");
+  printf ("\t\tIf omitted, it defaults to the size\n");
   printf ("\t\tof the default font defined in X resource.\n");
   printf ("  %-13s %s", "--version", "print version number\n");
   printf ("  %-13s %s", "-h, --help", "print this message\n");
@@ -290,8 +288,8 @@ main (int argc, char **argv)
        help_exit (argv[0], 0);
       else if (! strcmp (argv[i], "--version"))
        {
-         printf ("m17n-view (m17n library) %s\n", VERSION);
-         printf ("Copyright (C) 2003 AIST, JAPAN\n");
+         printf ("m17n-view (m17n library) %s\n", M17NLIB_VERSION_NAME);
+         printf ("Copyright (C) 2003, 2004, 2005, 2006, 2007 AIST, JAPAN\n");
          exit (0);
        }
       else if (! strcmp (argv[i], "-e"))