From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: GNU Emacs CVS HEAD: Date: Fri, 20 Jan 2006 21:58:01 +0900 Message-ID: References: <6d66855c0601182207t76b8bd41qb3cc4eba0ad5c8ed@mail.gmail.com> 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: sea.gmane.org 1137781086 418 80.91.229.2 (20 Jan 2006 18:18:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 20 Jan 2006 18:18:06 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jan 20 19:18:03 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F00ph-0008Hg-MH for ged-emacs-devel@m.gmane.org; Fri, 20 Jan 2006 19:17:57 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F00qW-0007C6-O6 for ged-emacs-devel@m.gmane.org; Fri, 20 Jan 2006 13:18:48 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EzxUS-00075b-0X for emacs-devel@gnu.org; Fri, 20 Jan 2006 09:43:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EzwlL-00030G-LF for emacs-devel@gnu.org; Fri, 20 Jan 2006 08:57:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ezvsh-0008FZ-6d for emacs-devel@gnu.org; Fri, 20 Jan 2006 08:00:44 -0500 Original-Received: from [192.47.44.130] (helo=tsukuba.m17n.org) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1Ezvwt-0000Fg-So for emacs-devel@gnu.org; Fri, 20 Jan 2006 08:05:04 -0500 Original-Received: from nfs.m17n.org (nfs.m17n.org [192.47.44.7]) by tsukuba.m17n.org (8.13.4/8.13.4/Debian-3) with ESMTP id k0KCw2sq008509; Fri, 20 Jan 2006 21:58:02 +0900 Original-Received: from etlken (etlken.m17n.org [192.47.44.125]) by nfs.m17n.org (8.13.4/8.13.4/Debian-3) with ESMTP id k0KCw20H024066; Fri, 20 Jan 2006 21:58:02 +0900 Original-Received: from handa by etlken with local (Exim 3.36 #1 (Debian)) id 1Ezvq5-0004n9-00; Fri, 20 Jan 2006 21:58:01 +0900 Original-To: Eric Hanchrow In-reply-to: (message from Eric Hanchrow on Thu, 19 Jan 2006 16:53:38 +0000 (UTC)) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI) 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:49326 Archived-At: In article , Eric Hanchrow writes: > dhruva gmail.com> writes: >> Loading language/indian (source)... >> IO error reading c:/tmp/build/emacs/lisp/language/indian.el: >> Bad file descriptor > Thanks for reporting this. I'm seeing essentially the same problem; the only > difference is that I use the mingw32 tools to build, instead of Microsoft's. I've got a report saying that it seems that the recent changes to autoload-coding-system (mule.el) is the culprit. He wrote that applying the following patch will fix the problem. *** mule.el 16 Jan 2006 21:01:11 +0900 1.229 --- mule.el 20 Jan 2006 21:54:09 +0900 *************** *** 1147,1153 **** coding-system-alist)) (dolist (elt '("-unix" "-dos" "-mac")) (let ((name (concat (symbol-name symbol) elt))) ! (put (intern name) 'coding-system-define-form form) (setq coding-system-alist (cons (list name) coding-system-alist))))) (defun set-buffer-file-coding-system (coding-system &optional force nomodify) --- 1147,1153 ---- coding-system-alist)) (dolist (elt '("-unix" "-dos" "-mac")) (let ((name (concat (symbol-name symbol) elt))) ! ;; (put (intern name) 'coding-system-define-form form) (setq coding-system-alist (cons (list name) coding-system-alist))))) (defun set-buffer-file-coding-system (coding-system &optional force nomodify) But, I have no idea what is wrong with the original code. Does someone have any adea? --- Kenichi Handa handa@m17n.org