From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 19305138A87 for ; Tue, 24 Feb 2015 02:18:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FBFEE0885; Tue, 24 Feb 2015 02:18:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F74CE0885 for ; Tue, 24 Feb 2015 02:18:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 531E53408A2 for ; Tue, 24 Feb 2015 02:18:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1122126B8 for ; Tue, 24 Feb 2015 02:18:08 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1424744283.0cd3f2a7abd8d21806cf96fd5d71e5a711a81b92.robbat2@gentoo> Subject: [gentoo-commits] proj/ag:master commit in: / X-VCS-Repository: proj/ag X-VCS-Files: ag X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 0cd3f2a7abd8d21806cf96fd5d71e5a711a81b92 X-VCS-Branch: master Date: Tue, 24 Feb 2015 02:18:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f0ae6109-7dfe-42a6-be9a-efd421ef700b X-Archives-Hash: c53a596f8ed5b45f6a3b72ff97d4d9e6 commit: 0cd3f2a7abd8d21806cf96fd5d71e5a711a81b92 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Feb 24 02:18:03 2015 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Feb 24 02:18:03 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/ag.git;a=commit;h=0cd3f2a7 Correct action. Signed-off-by: Robin H. Johnson gentoo.org> --- ag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ag b/ag index ffe714b..6c5dde1 100755 --- a/ag +++ b/ag @@ -55,7 +55,7 @@ op = OptionParser.new do |opts| opts.on('--delete-index', 'Delete index. Needs --list') do abort 'Can only select one action' if $options.action != nil - $options.action = :do_index + $options.action = :do_delete_index $options.need_argument = false end