From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: nospam55 Newsgroups: gmane.emacs.help Subject: Re: mule : multibyte to 7 bit conversions Date: Sat, 07 Feb 2004 21:36:48 +0100 Organization: itposets Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <401AD7EC.8020201@yahoo.com> <401EDB1B.8010401@yahoo.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Trace: sea.gmane.org 1076190451 16307 80.91.224.253 (7 Feb 2004 21:47:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 7 Feb 2004 21:47:31 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Feb 07 22:47:26 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ApaIQ-0002xu-00 for ; Sat, 07 Feb 2004 22:47:26 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ApaGu-0001c4-Uq for geh-help-gnu-emacs@m.gmane.org; Sat, 07 Feb 2004 16:45:52 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!d81-211-154-214.cust.tele2.IT!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 34 Original-NNTP-Posting-Host: d81-211-154-214.cust.tele2.it (81.211.154.214) Original-X-Trace: news.uni-berlin.de 1076189427 36225696 D 81.211.154.214 ([183691]) User-Agent: KNode/0.7.1 Original-Xref: shelby.stanford.edu gnu.emacs.help:120754 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:16702 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:16702 > What happens if you run this command: > > LC_ALL=C man bash > bash.man > > Are there still non-ASCII characters in the bash.man file? unfortunately with $ LC_ALL=C man bash > bash.man I get in bash.man the same funny ^H etc chars as before; moreover, I have from many weeks $ echo ${!LC*} LC_COLLATE $ declare -p LC_COLLATE declare -x LC_COLLATE="C" > The `man foo` command is basically equivalent to: > > > nroff -man /usr/man/man?/foo.? | ${PAGER:more} > > > It works because your terminal interprets the backspace and various escape > sequences that nroff outputs.` This suggestion seems to be important, I will try using it and will let you know nospam55