From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Re: leim-list.el and registering input methods Date: Tue, 3 Nov 2009 22:30:28 -0800 (PST) Message-ID: <200911040630.nA46USfP029300@godzilla.ics.uci.edu> References: <200910210708.n9L78Qkg004553@godzilla.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1257316353 32472 80.91.229.12 (4 Nov 2009 06:32:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 4 Nov 2009 06:32:33 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 04 07:32:26 2009 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 1N5ZPr-0007Gs-B5 for ged-emacs-devel@m.gmane.org; Wed, 04 Nov 2009 07:32:23 +0100 Original-Received: from localhost ([127.0.0.1]:47016 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N5ZPq-0006zm-QR for ged-emacs-devel@m.gmane.org; Wed, 04 Nov 2009 01:32:22 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N5ZPh-0006zL-QM for emacs-devel@gnu.org; Wed, 04 Nov 2009 01:32:13 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N5ZPb-0006wc-Pj for emacs-devel@gnu.org; Wed, 04 Nov 2009 01:32:12 -0500 Original-Received: from [199.232.76.173] (port=58944 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N5ZPb-0006wX-JL for emacs-devel@gnu.org; Wed, 04 Nov 2009 01:32:07 -0500 Original-Received: from colin-baker-v0.ics.uci.edu ([128.195.1.153]:45784) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N5ZPb-0003tT-5n for emacs-devel@gnu.org; Wed, 04 Nov 2009 01:32:07 -0500 Original-Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by colin-baker-v0.ics.uci.edu (8.13.8/8.13.8) with ESMTP id nA46USBE010448 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 3 Nov 2009 22:30:29 -0800 Original-Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id nA46USfP029300; Tue, 3 Nov 2009 22:30:28 -0800 (PST) In-Reply-To: (Stefan Monnier's message of "Wed, 21 Oct 2009 13:59:34 -0400") Original-Lines: 19 X-ICS-MailScanner-Information: Please send mail to helpdesk@ics.uci.edu or more information X-ICS-MailScanner-ID: nA46USBE010448 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) 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:116618 Archived-At: Stefan Monnier writes: > > Is there a reason that input methods are not registered in the dumped image? > > Probably a remnant from the days where leim was distributed separately > from Emacs. It would be good to move it to dump time. But please be > careful to still make it possible to have additional input-methods > recognized at startup (not sure how it's supposed to work currently, so > maybe there's nothing special to do for that). Here's one way to do this: check in the current emacs/leim/leim-list.el to emacs/lisp/builtin-leim-list.el (or a better name?), and change the emacs/leim/Makefile.in to build a file with a different name. Whenever emacs/leim/* changes, then emacs/leim/builtin-leim-list.el needs to be updated (like we do with ldefs-boot.el). OK to check in something like this?