From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SR44H-0005K3-GC for garchives@archives.gentoo.org; Sun, 06 May 2012 16:12:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44B04E086A; Sun, 6 May 2012 16:06:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1520BE086A for ; Sun, 6 May 2012 16:06:15 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7466E1B408F for ; Sun, 6 May 2012 16:06:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 37F86E542F for ; Sun, 6 May 2012 16:06:13 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1240591131.6c5bc925357ea0732ab9574c3e389b84e091d09c.sping@gentoo> Subject: [gentoo-commits] proj/emacs-tools:eselect-emacs commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ctags.eselect emacs.eselect X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 6c5bc925357ea0732ab9574c3e389b84e091d09c X-VCS-Branch: eselect-emacs Date: Sun, 6 May 2012 16:06:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 7b92bd36-9c40-4885-b862-36e97983c802 X-Archives-Hash: fe2971d2b946d16e858828e0ba33ff76 commit: 6c5bc925357ea0732ab9574c3e389b84e091d09c Author: Ulrich M=C3=BCller gentoo org> AuthorDate: Fri Apr 24 16:38:51 2009 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Fri Apr 24 16:38:51 2009 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/emacs-tools.g= it;a=3Dcommit;h=3D6c5bc925 Use post-increment. svn path=3D/eselect-emacs/; revision=3D1267 --- ctags.eselect | 2 +- emacs.eselect | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctags.eselect b/ctags.eselect index 07c386d..ac82953 100644 --- a/ctags.eselect +++ b/ctags.eselect @@ -147,7 +147,7 @@ do_list() { =20 write_list_start "Available ${CTAGS} symlink targets:" if [[ -n ${targets[@]} ]]; then - for (( i =3D 0; i < ${#targets[@]}; i =3D i + 1 )); do + for (( i =3D 0; i < ${#targets[@]}; i++ )); do # Display a star to indicate the currently chosen version [[ ${targets[i]} =3D \ $(basename "$(readlink "${ROOT}${bindir}/${CTAGS}")") ]] \ diff --git a/emacs.eselect b/emacs.eselect index 78abd12..c501592 100644 --- a/emacs.eselect +++ b/emacs.eselect @@ -189,7 +189,7 @@ do_list() { =20 write_list_start "Available Emacs symlink targets:" if [[ -n ${targets[@]} ]]; then - for (( i =3D 0; i < ${#targets[@]}; i =3D i + 1 )); do + for (( i =3D 0; i < ${#targets[@]}; i++ )); do # Display a star to indicate the currently chosen version [[ ${targets[i]} =3D \ $(basename "$(readlink "${ROOT}${bindir}/emacs")") ]] \