From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: bojohan+news@dd.chalmers.se (Johan =?utf-8?Q?Bockg=C3=A5rd?=) Newsgroups: gmane.emacs.help Subject: Re: german umlauts vs. meta key Date: Sun, 09 Mar 2008 11:47:28 +0100 Organization: Chalmers University of Technology, Sweden Message-ID: References: <87r6ewqk6v.fsf@hfph.mwn.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1205062862 18036 80.91.229.12 (9 Mar 2008 11:41:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 9 Mar 2008 11:41:02 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Mar 09 12:41:28 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JYJuA-0000jI-N3 for geh-help-gnu-emacs@m.gmane.org; Sun, 09 Mar 2008 12:41:26 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JYJtc-0004I2-IX for geh-help-gnu-emacs@m.gmane.org; Sun, 09 Mar 2008 07:40:52 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!goblin1!goblin2!goblin.stu.neva.ru!news.net.uni-c.dk!newsfeed.sunet.se!news01.sunet.se!gide.ita.chalmers.se!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-NNTP-Posting-Host: remote2.student.chalmers.se Original-X-Trace: gide.ita.chalmers.se 1205059648 20963 129.16.29.80 (9 Mar 2008 10:47:28 GMT) Original-X-Complaints-To: usenet@gide.ita.chalmers.se Original-NNTP-Posting-Date: Sun, 9 Mar 2008 10:47:28 +0000 (UTC) Mail-Copies-To: never User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:anaVsEtIEHCkEai6AKW+lm5rYMg= Original-Xref: shelby.stanford.edu gnu.emacs.help:156808 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:52180 Archived-At: Andreas Goesele writes: > Hi, > > I'm in the process of moving from XEmacs to Emacs, but I encountered a > problem: > > To be able to input german umlauts directly I have in my init.el: > > (progn > (apply 'set-input-mode t (list (nth 1 (current-input-mode))) > 0 (list (nth 3 (current-input-mode)))) > ) That's ugly and broken (there's one `list' call too many). ;; poor man's destructuring-bind (apply (lambda (interrupt flow meta quit) (set-input-mode interrupt flow 0 quit)) (current-input-mode)) -- Johan Bockgård