diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 14:45:40 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 14:45:40 +0000 |
commit | 5b3e1cd121a50c5c3b76c34d6c0e0c6430cefe93 (patch) | |
tree | bdbf56fc5e747e21dad1aabcf4c3275e8f62ce61 /app/xterm/version.h | |
parent | e18c4ea24ad92ea4dd3afea7e9a3a583f143cacd (diff) |
Update to xterm 291. Tested by many.
Diffstat (limited to 'app/xterm/version.h')
-rw-r--r-- | app/xterm/version.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/app/xterm/version.h b/app/xterm/version.h index 02e36cf74..4866bc9d4 100644 --- a/app/xterm/version.h +++ b/app/xterm/version.h @@ -1,7 +1,7 @@ -/* $XTermId: version.h,v 1.352 2012/11/26 01:07:33 tom Exp $ */ +/* $XTermId: version.h,v 1.360 2013/02/26 23:48:28 tom Exp $ */ /* - * Copyright 1998-2011,2012 by Thomas E. Dickey + * Copyright 1998-2012,2013 by Thomas E. Dickey * * All Rights Reserved * @@ -30,15 +30,21 @@ * authorization. */ +#ifndef included_version_h +#define included_version_h /* * These definitions are used to build the string that's printed in response to * "xterm -version", or embedded in "xterm -help". It usually indicates the - * version of X to which this version of xterm has been built. The number in - * parentheses is my patch number (Thomas E. Dickey). + * version of X to which this version of xterm has been built. The resulting + * number in parentheses is my patch number (Thomas E. Dickey). */ -#define XTERM_PATCH 287 -#define XTERM_DATE 2012-11-25 +#define XTERM_PATCH 291 +#define XTERM_DATE 2013-02-26 #ifndef __vendorversion__ #define __vendorversion__ "XTerm/OpenBSD" #endif + +extern char *xtermVersion(void); + +#endif /* included_version_h */ |