From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "H.S." Newsgroups: gmane.emacs.help Subject: Re: font or face problem in emacs Date: Fri, 30 Jun 2006 12:13:45 -0400 Message-ID: References: <7F44E50F-B4E1-4692-A021-D78D5596956D@Web.DE> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1151684109 26749 80.91.229.2 (30 Jun 2006 16:15:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 30 Jun 2006 16:15:09 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jun 30 18:15:05 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 1FwLdp-0001Or-05 for geh-help-gnu-emacs@m.gmane.org; Fri, 30 Jun 2006 18:14:50 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FwLdo-0008NU-E1 for geh-help-gnu-emacs@m.gmane.org; Fri, 30 Jun 2006 12:14:48 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FwLdZ-0008Kz-2Q for help-gnu-emacs@gnu.org; Fri, 30 Jun 2006 12:14:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FwLdW-0008GG-BO for help-gnu-emacs@gnu.org; Fri, 30 Jun 2006 12:14:32 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FwLdW-0008Fs-01 for help-gnu-emacs@gnu.org; Fri, 30 Jun 2006 12:14:30 -0400 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FwLqK-0007rm-42 for help-gnu-emacs@gnu.org; Fri, 30 Jun 2006 12:27:44 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1FwLdG-0001J9-69 for help-gnu-emacs@gnu.org; Fri, 30 Jun 2006 18:14:14 +0200 Original-Received: from hse-london-ppp3511184.sympatico.ca ([65.92.25.150]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jun 2006 18:14:14 +0200 Original-Received: from hs.samix by hse-london-ppp3511184.sympatico.ca with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 30 Jun 2006 18:14:14 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: help-gnu-emacs@gnu.org Original-Lines: 34 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: hse-london-ppp3511184.sympatico.ca User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20060607 Debian/1.7.12-1.2 X-Accept-Language: en In-Reply-To: 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:35763 Archived-At: Peter Dyballa wrote: > > Am 30.06.2006 um 00:37 schrieb H.S.: > >> Yup, you are right. I just discovered another post in this newsgroup. >> This seems to have worked: >> M-x prefer-coding-system RET utf-8 RET > > > You can set in .emacs for example: > > (setq default-buffer-file-coding-system 'utf-8-unix) > (set-default-coding-systems 'utf-8) > (prefer-coding-system 'utf-8) > (modify-coding-system-alist 'process "\\*shell\\*\\'" 'utf-8) > > and exceptions like these: > > (setq file-coding-system-alist > (append > '(("\\.tex\\'" iso-latin-9-unix . iso-latin-9-unix)) > ; '(("\\.el\\'" iso-latin-9-unix . iso-latin-9-unix)) > file-coding-system-alist)) Great, this is one of the options I was looking for. > In GNU Emacsen 21 and 22 the UTF-8 support is not perfect yet. And this explains a lot. Thanks, regards, ->HS