From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 From: Michael Schutte To: kbd@lists.altlinux.org Date: Mon, 1 Jun 2009 11:21:04 +0200 Message-Id: <1243848065-6509-1-git-send-email-michi@uiae.at> X-Mailer: git-send-email 1.6.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: [kbd] =?utf-8?q?=5BPATCH=5D_Add_documentation_for_loadkeys?= =?utf-8?q?=E2=80=99s_-q_option_to_loadkeys=2Ey?= X-BeenThere: kbd@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Linux console tools development discussion List-Id: Linux console tools development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Jun 2009 09:21:26 -0000 Archived-At: List-Archive: 86d0ca1 only altered loadkeys.c. Subsequent modifications to the yacc source file loadkeys.y made this change disappear again. Signed-off-by: Michael Schutte --- src/loadkeys.c | 7 ++++--- src/loadkeys.y | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/loadkeys.c b/src/loadkeys.c index e2c0c7b..b5dfb38 100644 --- a/src/loadkeys.c +++ b/src/loadkeys.c @@ -163,7 +163,7 @@ int yylex (void); /* Line 189 of yacc.c */ -#line 167 "loadkeys.c" +#line 167 "y.tab.c" /* Enabling traces. */ #ifndef YYDEBUG @@ -275,7 +275,7 @@ typedef int YYSTYPE; /* Line 264 of yacc.c */ -#line 279 "loadkeys.c" +#line 279 "y.tab.c" #ifdef short # undef short @@ -1825,7 +1825,7 @@ yyreduce: /* Line 1455 of yacc.c */ -#line 1829 "loadkeys.c" +#line 1829 "y.tab.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -2057,6 +2057,7 @@ usage(void) { " -d --default load \"%s\"\n" " -h --help display this help text\n" " -m --mktable output a \"defkeymap.c\" to stdout\n" +" -q --quiet suppress all normal output\n" " -s --clearstrings clear kernel string table\n" " -u --unicode force conversion to Unicode\n" " -v --verbose report the changes\n"), PACKAGE_VERSION, DEFMAP); diff --git a/src/loadkeys.y b/src/loadkeys.y index 70b48f9..be3e886 100644 --- a/src/loadkeys.y +++ b/src/loadkeys.y @@ -276,6 +276,7 @@ usage(void) { " -d --default load \"%s\"\n" " -h --help display this help text\n" " -m --mktable output a \"defkeymap.c\" to stdout\n" +" -q --quiet suppress all normal output\n" " -s --clearstrings clear kernel string table\n" " -u --unicode force conversion to Unicode\n" " -v --verbose report the changes\n"), PACKAGE_VERSION, DEFMAP); -- 1.6.2.4