From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Hugues Mercier" Newsgroups: gmane.emacs.bugs Subject: Re: Bug: iso-accents-mode and numerical keboard Date: Wed, 16 Mar 2005 20:24:30 -0800 (PST) Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1111033862 22522 80.91.229.2 (17 Mar 2005 04:31:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 17 Mar 2005 04:31:02 +0000 (UTC) Cc: rms@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Mar 17 05:31:02 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DBmeF-0003qT-Ps for geb-bug-gnu-emacs@m.gmane.org; Thu, 17 Mar 2005 05:30:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DBmuS-0001NI-MT for geb-bug-gnu-emacs@m.gmane.org; Wed, 16 Mar 2005 23:47:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DBmtY-0000gd-Ot for bug-gnu-emacs@gnu.org; Wed, 16 Mar 2005 23:46:05 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DBmtU-0000e9-Fj for bug-gnu-emacs@gnu.org; Wed, 16 Mar 2005 23:46:02 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DBmtT-0000dk-Se for bug-gnu-emacs@gnu.org; Wed, 16 Mar 2005 23:45:59 -0500 Original-Received: from [137.82.52.84] (helo=mail.ece.ubc.ca) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DBmYj-0001qc-QP; Wed, 16 Mar 2005 23:24:34 -0500 Original-Received: from localhost (localhost [127.0.0.1]) by mail.ece.ubc.ca (Postfix) with ESMTP id 6BABD3B0371; Wed, 16 Mar 2005 20:24:31 -0800 (PST) Original-Received: from mail.ece.ubc.ca ([127.0.0.1]) by localhost (plover [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24551-10; Wed, 16 Mar 2005 20:24:31 -0800 (PST) Original-Received: from lvs1-r6.ece.ubc.ca (lvs1-r6.ece.ubc.ca [137.82.52.136]) by mail.ece.ubc.ca (Postfix) with ESMTP id 560A43B0351; Wed, 16 Mar 2005 20:24:31 -0800 (PST) Original-Received: by lvs1-r6.ece.ubc.ca (Postfix, from userid 33) id 152C51FD3E; Wed, 16 Mar 2005 20:24:30 -0800 (PST) Original-To: bug-gnu-emacs@gnu.org Original-Received: from 137.82.57.243 (auth. user huguesm@localhost) by webmail.ece.ubc.ca with HTTP; Thu, 17 Mar 2005 04:24:30 +0000 X-IlohaMail-Blah: huguesm@localhost X-IlohaMail-Method: mail() [mem] X-IlohaMail-Dummy: moo X-Mailer: IlohaMail/0.8.13 (On: webmail.ece.ubc.ca) In-Reply-To: Bounce-To: "Hugues Mercier" X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at ece.ubc.ca X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org X-MailScanner-To: geb-bug-gnu-emacs@m.gmane.org Xref: news.gmane.org gmane.emacs.bugs:10942 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:10942 In the file iso-acc.el, the / (slash) is used as a pseudo accent character, which causes the / key on the numerical keyboard to fail when iso-accents-mode is enabled. Note that the / key is only used when iso-languages is set to "latin-1" (default setting). This can be solved by using | (or any other key not appearing on the numerical keyboard) instead of / as a pseudo accent character. The following lines need to be changed in iso-acc.el: Line 139 (?| (?A . ?\305) (?E . ?\306) (?O . ?\330) (?a . ?\345) (?e . ?\346) Line 170 (defvar iso-accents-enable '(?' ?` ?^ ?\" ?~ ?|) There are also a few lines of comments that need to be updated. I hope it helps, Hugues Mercier. Le 15/2/2005, "Hugues Mercier" a =E9crit: >I have found the following bug: > >--------------------------------------------------------------------- > >GNU Emacs 21.3.1 (i386-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of >2004-10-16 on raven, modified by Debian > >--------------------------------------------------------------------- > >When iso-accents-mode is enabled (M-x iso-accents-mode), the slash >(division) key on the numerical keyboard stop working. When the key is >pressed, the following error message is printed: > >iso-accents-accent-key: Wrong type argument: integerp, kp-divide > >Regards, > >Hugues Mercier.