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 1SR47S-0005vq-Nx for garchives@archives.gentoo.org; Sun, 06 May 2012 16:15:35 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AEBFE0886; Sun, 6 May 2012 16:06:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1BD0BE088D for ; Sun, 6 May 2012 16:06:17 +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 B2B391B4099 for ; Sun, 6 May 2012 16:06:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 80E9AE542B for ; Sun, 6 May 2012 16:06:15 +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: <1257594622.a0b997d3c751efe360c8fdf36433d4a808473749.sping@gentoo> Subject: [gentoo-commits] proj/emacs-tools:eselect-emacs commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog emacs.eselect X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: a0b997d3c751efe360c8fdf36433d4a808473749 X-VCS-Branch: eselect-emacs Date: Sun, 6 May 2012 16:06:15 +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: 0c5183f0-fc03-432a-a922-736083036fb7 X-Archives-Hash: d11d50f85d9bdb51f4ffa3f218741745 commit: a0b997d3c751efe360c8fdf36433d4a808473749 Author: Ulrich M=C3=BCller gentoo org> AuthorDate: Sat Nov 7 11:50:22 2009 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sat Nov 7 11:50:22 2009 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/emacs-tools.g= it;a=3Dcommit;h=3Da0b997d3 Uncomment tests for is_output_mode. svn path=3D/eselect-emacs/; revision=3D1450 --- ChangeLog | 2 +- emacs.eselect | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7fde51..380d6d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -2009-11-06 Ulrich Mueller +2009-11-07 Ulrich Mueller =20 * emacs.eselect (do_list, do_show): * ctags.eselect (do_list): Support brief output mode, bug 292100. diff --git a/emacs.eselect b/emacs.eselect index b51a109..8ffa0bd 100644 --- a/emacs.eselect +++ b/emacs.eselect @@ -171,10 +171,10 @@ do_show() { write_kv_list_entry "(unset)" "" fi =20 - #if ! is_output_mode brief; then + if ! is_output_mode brief; then xemacs_info #vim_info - #fi + fi } =20 ### list action ### @@ -198,10 +198,10 @@ do_list() { write_list_start "Available Emacs symlink targets:" write_numbered_list -m "(none found)" "${targets[@]}" =20 - #if ! is_output_mode brief; then + if ! is_output_mode brief; then xemacs_info #vim_info - #fi + fi } =20 ### set action ###