Gentoo Archives: gentoo-commits

From: "Vadim A. Misbakh-Soloviov" <mva@×××.name>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/zsh-completion:master commit in: /
Date: Mon, 25 Aug 2014 16:13:26
Message-Id: 1408983085.22f2f1fae54d9242b2e9a2fbc49918f1dbe6edbb.mva@gentoo
1 commit: 22f2f1fae54d9242b2e9a2fbc49918f1dbe6edbb
2 Author: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
3 AuthorDate: Mon Aug 25 16:04:21 2014 +0000
4 Commit: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
5 CommitDate: Mon Aug 25 16:11:25 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/zsh-completion.git;a=commit;h=22f2f1fa
7
8 _eselect: news fix (typo in regexp)
9
10 Signed-off-by: Vadim A. Misbakh-Soloviov <mva <AT> mva.name>
11
12 ---
13 _eselect | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/_eselect b/_eselect
17 index 796a819..c012955 100644
18 --- a/_eselect
19 +++ b/_eselect
20 @@ -134,7 +134,7 @@ _eselect_news() {
21 _values -w 'news' 'new[Count only new news items]' 'all[Count all news items]' && return 0
22 fi
23
24 - newslist=(${${${${${${${(M)${(f)"$(eselect --color=no news list)"}## *}// \**/}/ \[/}/\] ##/\[}/%/]}/ \[/ (}/\] /) })
25 + newslist=(${${${${${${${(M)${(f)"$(eselect --color=no news list)"}## *}// \**/}/ \[/}/\] ##/\[}/%/]}/ \[/ (}/\] /) })
26
27 if (( $words[(I)(read)] )); then
28 newslist+=( "new[Read unread news items (default)]" "all[Read all news items]" "--mbox[Output in mbox format]" "--quiet[Suppress output, only change status]" "--raw[Output in raw format]" )