Revert "keymap: add --version option"

This reverts commit d8f173fd2e.
This commit is contained in:
Kay Sievers 2012-07-17 16:39:14 +02:00
parent d8f173fd2e
commit fdc0d8468a
1 changed files with 0 additions and 9 deletions

View File

@ -362,13 +362,8 @@ static void help(int error)
int main(int argc, char **argv)
{
enum {
ARG_VERSION = 0x100,
};
static const struct option options[] = {
{ "help", no_argument, NULL, 'h' },
{ "version", no_argument, NULL, ARG_VERSION },
{ "interactive", no_argument, NULL, 'i' },
{}
};
@ -387,10 +382,6 @@ int main(int argc, char **argv)
case 'h':
help(0);
case ARG_VERSION:
puts(PACKAGE_STRING);
exit(0);
case 'i':
opt_interactive = 1;
break;