1 /* $OpenBSD: version.c,v 1.9 2005/06/14 18:14:40 kjell Exp $ */ 2 3 /* This file is in the public domain. */ 4 5 /* 6 * This file contains the string that gets written 7 * out by the emacs-version command. 8 */ 9 10 #include "def.h" 11 12 const char version[] = "Mg 2a"; 13 14 /* 15 * Display the version. All this does 16 * is copy the version string onto the echo line. 17 */ 18 /* ARGSUSED */ 19 int 20 showversion(int f, int n) 21 { 22 ewprintf("%s", version); 23 return (TRUE); 24 } 25