From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Mark Moll Newsgroups: gmane.emacs.devel Subject: font oddity on OS X Date: Sun, 25 Jul 2004 16:29:24 -0500 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 (Apple Message framework v618) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1090791033 9213 80.91.224.253 (25 Jul 2004 21:30:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 25 Jul 2004 21:30:33 +0000 (UTC) Cc: Mark Moll Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 25 23:30:22 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BoqZZ-0005xk-00 for ; Sun, 25 Jul 2004 23:30:22 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BoqcX-0003eF-6A for ged-emacs-devel@m.gmane.org; Sun, 25 Jul 2004 17:33:25 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BoqcQ-0003du-Ij for emacs-devel@gnu.org; Sun, 25 Jul 2004 17:33:18 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BoqcO-0003cw-VR for emacs-devel@gnu.org; Sun, 25 Jul 2004 17:33:18 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BoqcO-0003ct-Rj for emacs-devel@gnu.org; Sun, 25 Jul 2004 17:33:16 -0400 Original-Received: from [128.42.1.30] (helo=cs.rice.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BoqYv-0000Yc-4N for emacs-devel@gnu.org; Sun, 25 Jul 2004 17:29:41 -0400 Original-Received: from localhost (calypso.cs.rice.edu [128.42.1.127]) by cs.rice.edu (Postfix) with ESMTP id 08BE24A9FF; Sun, 25 Jul 2004 16:29:39 -0500 (CDT) Original-Received: from cs.rice.edu ([128.42.1.30]) by localhost (calypso.cs.rice.edu [128.42.1.127]) (amavisd-new, port 10024) with LMTP id 00580-01-97; Sun, 25 Jul 2004 16:29:39 -0500 (CDT) Original-Received: from [67.101.68.195] (h-67-101-68-195.hstqtx02.dynamic.covad.net [67.101.68.195]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by cs.rice.edu (Postfix) with ESMTP id 2822F4A9F9; Sun, 25 Jul 2004 16:29:39 -0500 (CDT) Original-To: emacs-devel@gnu.org X-Mailer: Apple Mail (2.618) X-Virus-Scanned: by amavis-20030616-p7 at cs.rice.edu 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:25952 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:25952 I observed the following odd behavior with a freshly compiled emacs=20 from CVS. I have the code below in my .emacs to set it up for a mac=20 keyboard. The odd thing is that if I press "option-u u" for instance, I=20= get "=B8" instead of "=FC". Similarly, "option-e e" produces "=C8" = instead of=20 "=E9". Bizarrely, the problem goes away if I press "option-shift-minus"=20= (em dash) once. (set-terminal-coding-system 'iso-8859-1) (set-language-environment "Latin-1") (set-keyboard-coding-system 'mac-roman) (set-selection-coding-system 'mac-roman) (setq mac-keyboard-text-encoding kTextEncodingISOLatin1 mac-command-key-is-meta t mac-emulate-three-button-mouse t) (set-frame-font "fontset-mac") --=20 Mark