From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel Subject: Re: blank-mode.el Date: Sun, 11 Nov 2007 22:01:45 +0000 Message-ID: <47377BC9.70305@gnu.org> References: <47251573.90509@ig.com.br> <87k5p6me9s.fsf@kfs-lx.testafd.dk> <4725FE3F.9020000@ig.com.br> <87ejfczrru.fsf@jurta.org> <4728019D.6040903@ig.com.br> <873avrw9hj.fsf@jurta.org> <47349473.10905@ig.com.br> <4734A2D4.6040703@ig.com.br> <4736653E.7080504@ig.com.br> <47371847.9020507@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1194818586 11765 80.91.229.12 (11 Nov 2007 22:03:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 11 Nov 2007 22:03:06 +0000 (UTC) Cc: emacs-devel@gnu.org To: bob@rattlesnake.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 11 23:03:10 2007 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 1IrKtY-0005W0-H8 for ged-emacs-devel@m.gmane.org; Sun, 11 Nov 2007 23:03:08 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IrKtM-0003x0-NW for ged-emacs-devel@m.gmane.org; Sun, 11 Nov 2007 17:02:56 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IrKsP-0002YV-Bh for emacs-devel@gnu.org; Sun, 11 Nov 2007 17:01:57 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IrKsN-0002Ws-NS for emacs-devel@gnu.org; Sun, 11 Nov 2007 17:01:56 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IrKsN-0002Wh-IL for emacs-devel@gnu.org; Sun, 11 Nov 2007 17:01:55 -0500 Original-Received: from outmail1.freedom2surf.net ([194.106.33.237]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IrKsN-0002RF-2b for emacs-devel@gnu.org; Sun, 11 Nov 2007 17:01:55 -0500 Original-Received: from [127.0.0.1] (i-83-67-23-108.freedom2surf.net [83.67.23.108]) by outmail1.freedom2surf.net (Postfix) with ESMTP id E674550112; Sun, 11 Nov 2007 22:01:53 +0000 (GMT) User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) In-Reply-To: X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 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:82972 Archived-At: Robert J. Chassell wrote: > On 11 Nov 2007, Jason Rumney asks > > What about U+21B5 (downwards arrow with corner leftwards)? > > On my system, changing `blank-display-mappings' in blank-mode.el so > that > > (?\n [?\x21B5 ?\n] [?$ ?\n]) ; end-of-line > In Emacs 22 and trunk, ?\x21B5 is an emacs-mule codepoint, not a unicode codepoint. I think there is an easy way to get an emacs character from a unicode codepoint, but I can't find it now (apropos ucs, unicode did not bring up what I wanted). But the following gives the correct character: (make-char 'mule-unicode-0100-24ff #xF7 #xb5)