From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KoIHy-0002OT-Lc for garchives@archives.gentoo.org; Fri, 10 Oct 2008 13:44:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C066FE03AD; Fri, 10 Oct 2008 13:44:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9BFBCE03AD for ; Fri, 10 Oct 2008 13:44:18 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 46B55647A4 for ; Fri, 10 Oct 2008 13:44:17 +0000 (UTC) Received: from hawking by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1KoIHw-00062w-U2 for gentoo-commits@lists.gentoo.org; Fri, 10 Oct 2008 13:44:16 +0000 From: "Ali Polatel (hawking)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hawking@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: vim.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: vim.eclass X-VCS-Directories: eclass X-VCS-Committer: hawking X-VCS-Committer-Name: Ali Polatel Content-Type: text/plain; charset=utf8 Message-Id: Sender: Ali Polatel Date: Fri, 10 Oct 2008 13:44:16 +0000 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: 2990e5d3-590e-47e9-b560-74e3e696b06c X-Archives-Hash: de4e92427eb9d4973204e2810f18aebe hawking 08/10/10 13:44:16 Modified: vim.eclass Log: Remove the tr which truncates utf8 man pages, bug 225039. Revision Changes Path 1.173 eclass/vim.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/vim.eclass?= rev=3D1.173&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/vim.eclass?= rev=3D1.173&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/vim.eclass?= r1=3D1.172&r2=3D1.173 Index: vim.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v retrieving revision 1.172 retrieving revision 1.173 diff -u -r1.172 -r1.173 --- vim.eclass 26 Jul 2008 14:20:50 -0000 1.172 +++ vim.eclass 10 Oct 2008 13:44:16 -0000 1.173 @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.172 2008/07/26 = 14:20:50 hawking Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.173 2008/10/10 = 13:44:16 hawking Exp $ =20 # Authors: # Ryan Phillips @@ -302,8 +302,7 @@ && use vim-pager ; then cat < "${S}"/runtime/macros/manpager.sh #!/bin/sh -sed -e 's/\x1B\[[[:digit:]]\+m//g' | \\ -tr '\\267' '.' | col -b | \\ +sed -e 's/\x1B\[[[:digit:]]\+m//g' | col -b | \\ vim \\ -c 'let no_plugin_maps =3D 1' \\ -c 'set nolist nomod ft=3Dman' \\