From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.help Subject: Re: line drawing characters Date: Mon, 01 Nov 2004 21:31:30 +0100 Organization: http://purl.org/harder/ Message-ID: References: <2uab8bF270qltU1@uni-berlin.de> <2uae8jF27urf2U1@uni-berlin.de> <2ucvheF29ovgrU1@uni-berlin.de> <2udfo4F28v06rU1@uni-berlin.de> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1099341437 17130 80.91.229.6 (1 Nov 2004 20:37:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 1 Nov 2004 20:37:17 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Nov 01 21:37:10 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 1COivN-0007BG-00 for ; Mon, 01 Nov 2004 21:37:09 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1COj3N-0003Zl-GK for geh-help-gnu-emacs@m.gmane.org; Mon, 01 Nov 2004 15:45:25 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!news.zanker.org!border2.nntp.ams.giganews.com!nntp.giganews.com!uio.no!newsfeed1.uni2.dk!news.get2net.dk.POSTED!53ab2750!not-for-mail Original-Newsgroups: gnu.emacs.help X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; 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: main.gmane.org gmane.emacs.help:21686 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:21686 Greg Hill writes: > list-charset-chars for mule-unicode-2500-33ff gives me all empty > boxes. I am beginning to suspect that the problem is not so much > with Emacs as it is with my X windows server (eXodus running on a MAC > under OS-9), which must not have a matching font to use for painting > the display. I will be working with our IT department this week to > (finally!) get my MAC upgraded to OS-10, in hopes that that will take > care of the problem. OK, if you're lucky it might work out-of-the-box. > Incidentally, the following bit of code tells me that character codes > in the range of 294912 (0x48000) to 311295 (0x4bfff) correspond to > the mule-unicode-2500-33ff character set. Well, yeah but not quite. 2941912 isn't a valid normal char: (valid-char-p 2941912) => nil but it _is_ a valid generic char: (valid-char-p 2941912 t) => t ... don't ask :-) -- Jesper Harder