From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Peter Dyballa Newsgroups: gmane.emacs.help Subject: Re: font or face problem in emacs Date: Fri, 30 Jun 2006 00:18:34 +0200 Message-ID: <7F44E50F-B4E1-4692-A021-D78D5596956D@Web.DE> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=WINDOWS-1252; delsp=yes; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1151619637 23692 80.91.229.2 (29 Jun 2006 22:20:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 29 Jun 2006 22:20:37 +0000 (UTC) Cc: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jun 30 00:20:35 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Fw4s3-0007w1-VX for geh-help-gnu-emacs@m.gmane.org; Fri, 30 Jun 2006 00:20:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fw4s3-00085m-90 for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Jun 2006 18:20:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fw4rr-000834-08 for help-gnu-emacs@gnu.org; Thu, 29 Jun 2006 18:20:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fw4rp-00081K-Bd for help-gnu-emacs@gnu.org; Thu, 29 Jun 2006 18:20:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fw4rp-00081H-6R for help-gnu-emacs@gnu.org; Thu, 29 Jun 2006 18:20:09 -0400 Original-Received: from [217.72.192.221] (helo=fmmailgate01.web.de) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Fw54S-0002Uf-Sb for help-gnu-emacs@gnu.org; Thu, 29 Jun 2006 18:33:13 -0400 Original-Received: from smtp05.web.de (fmsmtp05.dlan.cinetic.de [172.20.4.166]) by fmmailgate01.web.de (Postfix) with ESMTP id 4DFAF52E8E0; Fri, 30 Jun 2006 00:18:36 +0200 (CEST) Original-Received: from [84.245.187.60] (helo=[192.168.1.2]) by smtp05.web.de with asmtp (TLSv1:RC4-SHA:128) (WEB.DE 4.107 #114) id 1Fw4qK-0003JC-00; Fri, 30 Jun 2006 00:18:36 +0200 In-Reply-To: X-Image-Url: http://homepage.mac.com/sparifankal/.cv/thumbs/me.thumbnail Original-To: "H.S." X-Mailer: Apple Mail (2.750) X-Sender: Peter_Dyballa@web.de X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:35740 Archived-At: Am 29.06.2006 um 22:50 schrieb H.S.: > g++ -Wall -ansi -o testprog testprog.cc > testprog.cc: In function =91int main()=92: > testprog.cc:6: warning: unused variable =91i=92 > testprog.cc:6: warning: unused variable =91j=92 > > Compilation finished at Thu Jun 29 15:01:30 > ---------------------------------------------------------------- > > The strange characters around a variable are(I have typed the =20 > backslashes and numbers so that they are displayed properly here): > on left hand side: =E2\200\230 > on right hand side: =E2\200\231 What you see here is UTF-8 represented as 8bit: U+2018 =3D E2 80 98 : LEFT SINGLE QUOTATION MARK =3D =91 U+2019 =3D E2 80 99 : RIGHT SINGLE QUOTATION MARK =3D =92 =E2 is E2 in hex 200 oct is 80 in hex 230 oct and 231 oct are 98 resp. 99 in hex. Make the *compilation* buffer be encoded in UTF-8 or make your LANG =20 or LC_CTYPE environment variables 8 bit -- could be there is some =20 option in your g++ to stay in 8 bit when printing some message. -- Greetings Pete =93Computers are good at following instructions, but not at reading =20 your mind.=94 - D. E. Knuth, The TeXbook, Addison-Wesley 1984, 1986, 1996, p. 9