From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: emacs 22 release Date: Tue, 04 Oct 2005 00:48:34 -0400 Organization: Bell Sympatico Message-ID: <87slvhhosw.fsf-monnier+gnu.emacs.help@gnu.org> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1128401886 29307 80.91.229.2 (4 Oct 2005 04:58:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 4 Oct 2005 04:58:06 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Oct 04 06:58:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EMeph-00054Z-Ui for geh-help-gnu-emacs@m.gmane.org; Tue, 04 Oct 2005 06:55:23 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EMeph-0005mM-6M for geh-help-gnu-emacs@m.gmane.org; Tue, 04 Oct 2005 00:55:17 -0400 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:IfDIDISSDYfYlLYPvni5BysgsOo= Original-Lines: 25 Original-NNTP-Posting-Host: 70.49.82.228 Original-X-Complaints-To: abuse@sympatico.ca Original-X-Trace: news20.bellglobal.com 1128401314 70.49.82.228 (Tue, 04 Oct 2005 00:48:34 EDT) Original-NNTP-Posting-Date: Tue, 04 Oct 2005 00:48:34 EDT Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news3.google.com!news.glorb.com!mpls-transit-01.news.qwest.net!207.225.159.1.MISMATCH!feed.news.qwest.net!tor-nx1!webster!nf1.bellglobal.com!nf2.bellglobal.com!news20.bellglobal.com.POSTED!not-for-mail Original-Xref: shelby.stanford.edu gnu.emacs.help:134325 Original-To: help-gnu-emacs@gnu.org 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:29898 Archived-At: > I reported this earlier this year. Stefan Monnier and Kenichi Handa tried > to help me with some code to patch xterm.c. It worked fine -- as long as > I did not update again ... Please try to resurrect the thread by re-reporting the bug. You can include my suggested patch in it. Stefan --- orig/src/keyboard.c +++ mod/src/keyboard.c @@ -3185,6 +3185,11 @@ } exit: + if (NATNUMP (c) && !EQ (prev_event, Qt) + && CHAR_VALID_P (XFASTINT (c), Qnil)) + XSETINT (c, translate_char (Vtranslation_table_for_input, + XFASTINT (c), 0, 0, 0)); + RESUME_POLLING; RETURN_UNGCPRO (c); }