home *** CD-ROM | disk | FTP | other *** search
- /*
- * This file contains the string that get written out by the emacs-version
- * command.
- */
-
- #include "def.h"
-
- char version[] = "Mg 3a Beta 4";
-
- /*
- * Display the version. All this does is copy the version string onto the
- * echo line.
- */
- /* ARGSUSED */
- showversion(f, n)
- int f, n;
- {
- ewprintf(version);
- return TRUE;
- }
-