From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Tatsuya Kinoshita Newsgroups: gmane.emacs.devel Subject: Mule-UCS (was: How to add some more charsets to mew?) Date: Tue, 16 Apr 2002 10:15:09 +0900 (JST) Sender: emacs-devel-admin@gnu.org Message-ID: <20020416.101509.48532423.05@tats.iris.ne.jp> References: <20020414.235532.125902697.05@tats.iris.ne.jp> <20020415.121251.31668116.wl@gnu.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1018919930 309 127.0.0.1 (16 Apr 2002 01:18:50 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 16 Apr 2002 01:18:50 +0000 (UTC) Cc: emacs-devel@gnu.org, wl@gnu.org, kitame@northeye.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16xHcQ-00004s-00 for ; Tue, 16 Apr 2002 03:18:50 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 16xHuN-0004PS-00 for ; Tue, 16 Apr 2002 03:37:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16xHbk-0000Rv-00; Mon, 15 Apr 2002 21:18:08 -0400 Original-Received: from vega.ocn.ne.jp ([211.6.83.72]) by fencepost.gnu.org with smtp (Exim 3.34 #1 (Debian)) id 16xHat-0000M3-00; Mon, 15 Apr 2002 21:17:16 -0400 Original-Received: from localhost (p2079-adsao03douji-acca.osaka.ocn.ne.jp [61.214.228.79]) by vega.ocn.ne.jp (OCN) with ESMTP id KAA14781; Tue, 16 Apr 2002 10:17:10 +0900 (JST) Original-To: jasonr@gnu.org In-Reply-To: X-Mailer: Mew version 3.0.55 on Emacs 20.7 / Mule 4.0 (HANANOEN) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:2652 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:2652 At 15 Apr 2002 22:17:35 +0100, Jason Rumney wrote: > Dave Love had some success. He posted his patches to > gnu.emacs.sources and the mule@m17n.org mailing list on 29 March. > You even followed that up with a comment about Mule-UCS no longer > seeming to be maintained. I know that. Debian's mule-ucs 0.84-10 applied the Dave Love's patch, mule@m17n.org: 03279, on 29 Mar 2002. However, it fails on Emacs 20 and XEmacs. mule-ucs 0.84-11 has fixed this problem. I've found a small bug fix in mule-ucs 0.84-11. See the following patch: ---- --- mule-ucs-0.84-10/lisp/un-define.el Tue Apr 16 09:47:40 2002 +++ mule-ucs-0.84-11/lisp/un-define.el Tue Apr 16 09:47:54 2002 @@ -618,13 +618,13 @@ (mucs-define-coding-system (car x) (nth 1 y) (nth 2 y) (nth 3 y) (nth 4 y) (nth 5 y))) - (mapcar - (lambda (y) + (mapcar + (lambda (y) (mucs-define-coding-system - (nth 0 y) (nth 1 y) (nth 2 y) - (nth 3 y) (nth 4 y) (nth 5 y) (nth 6 y)) - (coding-system-put (car y) 'alias-coding-systems (list (car x))))) - (cdr x))) + (nth 0 y) (nth 1 y) (nth 2 y) + (nth 3 y) (nth 4 y) (nth 5 y) (nth 6 y)) + (coding-system-put (car y) 'alias-coding-systems (list (car x)))) + (cdr x)))) `((utf-8 (utf-8-unix ?u "UTF-8 coding system" ---- -- Tatsuya Kinoshita