From owner-freebsd-questions@FreeBSD.ORG Wed Dec 22 03:12:00 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE73716A4CE for ; Wed, 22 Dec 2004 03:12:00 +0000 (GMT) Received: from hyperreal.org (taz3.hyperreal.org [209.237.226.90]) by mx1.FreeBSD.org (Postfix) with SMTP id 9EB0743D46 for ; Wed, 22 Dec 2004 03:12:00 +0000 (GMT) (envelope-from mike@hyperreal.org) Received: (qmail 63421 invoked by uid 1001); 22 Dec 2004 03:12:03 -0000 Message-ID: <20041222031203.63420.qmail@hyperreal.org> In-Reply-To: <41C89FFF.7050606@netual.pt> To: =?ISO-8859-1?Q?M=E1rio_Gamito?= Date: Tue, 21 Dec 2004 19:12:03 -0800 (PST) Sender: mike@hyperreal.org From: Mike Brown X-Whoa: whoa. X-Mailer: ELM [version 2.4ME+ PL119 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 cc: freebsd-questions@freebsd.org Subject: Re: No latin characters :( X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Dec 2004 03:12:01 -0000 Mário Gamito wrote: > Hi again, > > I did everything just as you told me. > When i type a latin letter like á, etc., i get a greek letter :( Internally, your "á" is probably byte 0xE1, as that is how it is defined by the ISO-8859-1 character map, and I assume that it's being interpreted correctly on the input side. If this byte is interpreted for output/display according to another character map, then you will see some other character that you didn't intend. For example, if it looks like "ß" (Latin small letter sharp s, which is used when writing the German language), then the byte is being interpreted according to CP437. If you tell us what character you get, it may help. We also need to know what you are using for display. Anything you can tell us about your setup, and how *we* can reproduce your results... There are so many possible points of failure, and you have not told us enough. Are you using the console (using hardware text modes), or are you doing this via an X Window session and a terminal window, or are you SSHing in and looking at everything through a Windows or Mac OS X environment? If you're not doing this at the console, then what SSH or terminal app are you using and how do you have it configured? In what are you typing the non-ASCII characters -- a shell? a text editor? Which one? All of these things make a difference. -Mike