From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: MIYASHITA Hisashi (=?ISO-2022-JP?B?GyRCNVwyPBsoQiAbJEI+MBsoQjpISU1J?=) Newsgroups: gmane.emacs.devel Subject: Re: Mule-UCS 0.84 (KOUGETSUDAI) release. Date: Fri, 06 Dec 2002 01:26:18 +0900 Sender: emacs-devel-admin@gnu.org Message-ID: References: <20021104.103826.71116326.05@tats.iris.ne.jp> <20021105.202038.18871060.05@tats.iris.ne.jp> <20021129.215347.74727519.05@tats.iris.ne.jp> <20021202.175121.98551706.wl@gnu.org> <200212050815.RAA19189@etlken.m17n.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1039106503 7095 80.91.224.249 (5 Dec 2002 16:41:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 5 Dec 2002 16:41:43 +0000 (UTC) Cc: mule@m17n.org, tats@vega.ocn.ne.jp, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Jz3Q-0001mF-00 for ; Thu, 05 Dec 2002 17:40:48 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18JzBd-0004HX-00 for ; Thu, 05 Dec 2002 17:49:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18JyrF-0007Ok-00; Thu, 05 Dec 2002 11:28:13 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18JyqS-0007BX-00 for emacs-devel@gnu.org; Thu, 05 Dec 2002 11:27:24 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18Jypw-00074L-00 for emacs-devel@gnu.org; Thu, 05 Dec 2002 11:27:23 -0500 Original-Received: from meadow.scphys.kyoto-u.ac.jp ([130.54.54.165]) by monty-python.gnu.org with smtp (Exim 4.10.13) id 18Jypw-0006xM-00 for emacs-devel@gnu.org; Thu, 05 Dec 2002 11:26:52 -0500 Original-Received: (qmail 24247 invoked from network); 5 Dec 2002 16:26:15 -0000 Original-Received: from localhost (HELO kiri.meadowy.org.meadow.scphys.kyoto-u.ac.jp) (himi@127.0.0.1) by localhost with SMTP; 5 Dec 2002 16:26:15 -0000 Original-To: Kenichi Handa In-Reply-To: <200212050815.RAA19189@etlken.m17n.org> User-Agent: Wanderlust/2.5.7 (Smooth) SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.3 Emacs/21.1 (i386-msvc-nt5.0.2195) MULE/5.0 (SAKAKI) Meadow/1.99 Alpha3 (HATAITA) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9894 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9894 At Thu, 5 Dec 2002 17:15:27 +0900 (JST), Kenichi Handa wrote: > ?!?!? I have no idea why Mule-UCS can be compiled by 20.7 > and 21.2 without error. > > Himi-san, could you please investigate it? Ummmm... It must be a dark side of Mule-UCS;-). As you know, mucs.el embeds lisp programs generated by TAE and MUCS-CCL, which maybe varies with the compilation environment... Anyway, it is a bug of Mule-UCS. However, it is not a bug of mucs-embed-program-with-hooks, because all hooks called by this function(mucs-embed-program-with-hooks) MUST return a list of S-expression(s), MUST NOT return a bare S-expression. This rule is important, because lots of parts of Mule-UCS generates Lisp programs. This rule simplifies the interface a little bit. The patch attached to this mail maybe fixes the problem. Could you please test the following patch on Emacs 21.3? BTW, right now I am too busy to fix the bug, bu I would like to check it strictly after my current work is over. With regards, from himi Index: mucs-ccl.el =================================================================== RCS file: /cvsroot/mule-ucs/lisp/mucs-ccl.el,v retrieving revision 1.25 diff -u -r1.25 mucs-ccl.el --- mucs-ccl.el 3 Oct 2000 14:50:16 -0000 1.25 +++ mucs-ccl.el 5 Dec 2002 16:21:08 -0000 @@ -639,10 +639,9 @@ (mucs-notify-embedment 'mucs-ccl-required name) (setq ccl-pgm-list (cdr ccl-pgm-list))) ; (message "MCCLREGFIN:%S" result) - `(progn - (setq mucs-ccl-facility-alist - (quote ,mucs-ccl-facility-alist)) - ,@result))) + `((setq mucs-ccl-facility-alist + (quote ,mucs-ccl-facility-alist)) + ,@result))) ;;; Add hook for embedding translation informations to a package. (add-hook 'mucs-package-definition-end-hook