From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Hansen Newsgroups: gmane.emacs.devel Subject: Emacs using weird double width font again for some non latin chars. Date: Fri, 13 Jun 2008 23:02:51 +0200 Organization: disorganized Message-ID: <878wx982v8.fsf@localhorst.mine.nu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1213391323 19480 80.91.229.12 (13 Jun 2008 21:08:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 13 Jun 2008 21:08:43 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 13 23:09:27 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K7GWU-00067r-UY for ged-emacs-devel@m.gmane.org; Fri, 13 Jun 2008 23:09:27 +0200 Original-Received: from localhost ([127.0.0.1]:35790 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7GVh-0004vK-19 for ged-emacs-devel@m.gmane.org; Fri, 13 Jun 2008 17:08:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K7GVc-0004su-CJ for emacs-devel@gnu.org; Fri, 13 Jun 2008 17:08:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K7GVa-0004qd-RZ for emacs-devel@gnu.org; Fri, 13 Jun 2008 17:08:31 -0400 Original-Received: from [199.232.76.173] (port=47739 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7GVa-0004qT-EE for emacs-devel@gnu.org; Fri, 13 Jun 2008 17:08:30 -0400 Original-Received: from main.gmane.org ([80.91.229.2]:60447 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1K7GVZ-00054a-84 for emacs-devel@gnu.org; Fri, 13 Jun 2008 17:08:29 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1K7GVR-0005TZ-Vg for emacs-devel@gnu.org; Fri, 13 Jun 2008 21:08:21 +0000 Original-Received: from e178055242.adsl.alicedsl.de ([85.178.55.242]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Jun 2008 21:08:21 +0000 Original-Received: from david.hansen by e178055242.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Jun 2008 21:08:21 +0000 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: emacs-devel@gnu.org Original-Lines: 33 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178055242.adsl.alicedsl.de Mail-Copies-To: nobody User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:doISepjSPpe8rWLP1B5A5iBUQM0= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:99148 Archived-At: Hello, this started after upgrading about an hour ago. Line drawing chars, math symbol and probably a lot other chars are displayed again in some weird double width font. This used to work for me before the last upgrade (except the "not working" part): ;;; Fontset stuff (create-fontset-from-fontset-spec "-unknown-Monaco-normal-normal-normal-*-12-*-*-*-m-0-fontset-monaco") ;; Not working (set-fontset-font "fontset-default" #x60 "DejaVu Sans Mono") (set-fontset-font "fontset-monaco" #x60 "DejaVu Sans Mono") ;; Greek (set-fontset-font "fontset-default" '(#x370 . #x3ff) "DejaVu Sans Mono") (set-fontset-font "fontset-monaco" '(#x370 . #x3ff) "DejaVu Sans Mono") ;; Math symbols (set-fontset-font "fontset-default" '(#x2000 . #x27FF) "DejaVu Sans Mono") (set-fontset-font "fontset-monaco" '(#x2000 . #x27FF) "DejaVu Sans Mono") (push (cons 'font "fontset-monaco") default-frame-alist) (push (cons 'font "fontset-monaco") initial-frame-alist) As you may have guessed i want to use ``Monaco'' for ASCII / Latin-1 and ``DejaVu Mono Sans'' for the rest. Am I doing something wrong or is Emacs screwed? David