diff options
author | Ali Polatel <hawking@gentoo.org> | 2008-10-10 13:44:16 +0000 |
---|---|---|
committer | Ali Polatel <hawking@gentoo.org> | 2008-10-10 13:44:16 +0000 |
commit | afb6ac40ac0e2c0c701f507fb04c3fc970fe4cd7 (patch) | |
tree | b198adc3a8e03d1940a6a10ef11f056cd2e3540b | |
parent | Remove curcmdmode from RDEPEND. (diff) | |
download | historical-afb6ac40ac0e2c0c701f507fb04c3fc970fe4cd7.tar.gz historical-afb6ac40ac0e2c0c701f507fb04c3fc970fe4cd7.tar.bz2 historical-afb6ac40ac0e2c0c701f507fb04c3fc970fe4cd7.zip |
Remove the tr which truncates utf8 man pages, bug 225039.
-rw-r--r-- | eclass/vim.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index d86aaec2020a..e3cf22f559fa 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -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 $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -302,8 +302,7 @@ vim_src_unpack() { && use vim-pager ; then cat <<END > "${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 = 1' \\ -c 'set nolist nomod ft=man' \\ |