From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: gallows Newsgroups: gmane.emacs.help Subject: Re: Emacs charset in compilation (M-x compile) Date: Sat, 03 Nov 2007 05:02:24 -0700 Organization: http://groups.google.com Message-ID: <1194091344.413496.35320@50g2000hsm.googlegroups.com> References: <1194004175.129555.218680@d55g2000hsg.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1194093651 14514 80.91.229.12 (3 Nov 2007 12:40:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 3 Nov 2007 12:40:51 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 03 13:40:55 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IoIJ3-000296-MY for geh-help-gnu-emacs@m.gmane.org; Sat, 03 Nov 2007 13:40:53 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IoIIt-0004Uw-6w for geh-help-gnu-emacs@m.gmane.org; Sat, 03 Nov 2007 08:40:43 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!50g2000hsm.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 31 Original-NNTP-Posting-Host: 84.223.176.46 Original-X-Trace: posting.google.com 1194091344 8601 127.0.0.1 (3 Nov 2007 12:02:24 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sat, 3 Nov 2007 12:02:24 +0000 (UTC) In-Reply-To: User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.8.1.6) Gecko/20070723 Iceweasel/2.0.0.6 (GNU/Linux),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: 50g2000hsm.googlegroups.com; posting-host=84.223.176.46; posting-account=ps2QrAMAAAA6_jCuRt2JEIpn5Otqf_w0 Original-Xref: shelby.stanford.edu gnu.emacs.help:153520 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:49004 Archived-At: On 2 Nov, 22:01, Peter Dyballa wrote: > Am 02.11.2007 um 12:49 schrieb gallows: > > > foo.c: In function =E2\200\230main=E2\200\231: > > foo.c:5: error: =E2\200\230dummy=E2\200\231 undeclared (first use in th= is > > function) > > > My locale use UTF-8 charset. How could I resolve that? > > Is the *compilation* buffer in UTF-8, too? Starting at the left with > ``-u:%*- *compilation*=B4=B4? > > What you see is the three bytes that make the UTF-8 representation of > the typographical quotes '', i.e. #xE2 #x80 #x98, #xE2 #x80 #x99. > Could be a > > (prefer-coding-system 'utf-8) > > is just missing in ~/.emacs ... or some customisation for compilation > mode! > I found an error in my ~/.emacs, there was a '(current-language- environment "Latin-1")', which was obviously incorrect for my env setup. Now it's okay and works smoothly. Thanks, s=2E