bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: iso-accents bug


From: Gerd Moellmann
Subject: Re: iso-accents bug
Date: 29 Oct 2001 16:48:12 +0100
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1.50

Marcelo Dias de Toledo <mtole@ig.com.br> writes:

> To reproduce the bug open a temp buffer and evaluate this:
> (iso-accents-mode t)
> (iso-accents-customize "portuguese")
> then press ' n times... also try pressing " n times and those two with
> diferent characters after it...
> 
> Wrong type argument: symbolp, 39

Thanks, Marcelo.  Could you please try the patch below?  BTW 21.1 is
released, there's no need to stick with the pretest :-).  

Index: iso-acc.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/international/iso-acc.el,v
retrieving revision 1.51
retrieving revision 1.52
diff -c -r1.51 -r1.52
*** iso-acc.el  1999/11/18 16:36:39     1.51
--- iso-acc.el  2001/10/29 15:42:44     1.52
***************
*** 1,6 ****
  ;;; iso-acc.el --- minor mode providing electric accent keys
  
! ;; Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
  
  ;; Author: Johan Vromans
  ;; Maintainer: FSF
--- 1,6 ----
  ;;; iso-acc.el --- minor mode providing electric accent keys
  
! ;; Copyright (C) 1993, 1994, 1996, 2001 Free Software Foundation, Inc.
  
  ;; Author: Johan Vromans
  ;; Maintainer: FSF
***************
*** 319,325 ****
           entry))
        ;; Otherwise, advance and schedule the second key for execution.
        (setq unread-command-events
!           (cons (list second-char) unread-command-events))
        (vector first-char))))
  
  ;; It is a matter of taste if you want the minor mode indicated
--- 319,325 ----
           entry))
        ;; Otherwise, advance and schedule the second key for execution.
        (setq unread-command-events
!           (push second-char unread-command-events))
        (vector first-char))))
  
  ;; It is a matter of taste if you want the minor mode indicated




reply via email to

[Prev in Thread] Current Thread [Next in Thread]