]> git.ipfire.org Git - thirdparty/newt.git/commitdiff
o changed version to update copyrign years and make it scannable with
authorhavill <havill>
Fri, 3 Jan 2003 21:42:13 +0000 (21:42 +0000)
committerhavill <havill>
Fri, 3 Jan 2003 21:42:13 +0000 (21:42 +0000)
  ident command

newt.c

diff --git a/newt.c b/newt.c
index 879e5fb57afa6df2768ba8cd4466d0ff7904cc4e..97a7f5213acf199ee18896e9c36448474bce0f76 100644 (file)
--- a/newt.c
+++ b/newt.c
@@ -120,15 +120,15 @@ static const struct keymap keymap[] = {
        { "\033[24~",           NEWT_KEY_F12,           NULL },
        { "\033",               NEWT_KEY_ESCAPE,        NULL },
 
-       { NULL,         0,                      NULL }, /* LEAVE this one */
+       { 0 },  /* LEAVE this one */
 };
 static char keyPrefix = '\033';
 
-static const char * version = "Newt windowing library version " VERSION
-                       " - (C) 1996-2000 Red Hat Software. "
-                       "Redistributable under the term of the Library "
-                       "GNU Public License. "
-                       "Written by Erik Troan\n";
+static const char *const version = // ident friendly
+    "$Version: Newt windowing library version " VERSION "$"
+    "$License: (C) 1996-2003 Red Hat, Inc. "
+             "Licensed under the terms of the Lesser GNU Public License. "
+             "Originally written by Erik Troan $";
 
 static newtSuspendCallback suspendCallback = NULL;
 static void * suspendCallbackData = NULL;