home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d147
/
src
/
version.c
< prev
next >
Wrap
Text File
|
1988-08-15
|
392b
|
21 lines
/*
* This file contains the string that get written
* out by the emacs-version command.
*/
#define TRUE 1 /* include "def.h" when things get more complicated */
char version[] = "Mg 2a (formerly MicroGnuEmacs)";
/*
* 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;
}