emacs-devel
[Top][All Lists]
Advanced

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

trunk read-key-sequence bug


From: Katsumi Yamaoka
Subject: trunk read-key-sequence bug
Date: Thu, 17 Jan 2008 16:05:53 +0900
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.50 (gnu/linux)

Hi,

To reproduce this bug, eval this form:

(let ((buffer (get-buffer-create "*testing*"))
      (keymap1 (make-sparse-keymap))
      (keymap2 (make-sparse-keymap)))
  (define-key keymap1 "a" keymap2)
  (pop-to-buffer buffer)
  (use-local-map keymap1)
  (read-key-sequence "01234567890123456789012345678901234567"))

Press the `a' key.  And then, after the first `a' appears in the
echo area, press the backspace key.  You will see:

(args-out-of-range "a backspace" 0 38)

The same error happens when I type `C-h c S' and then backspace
in the Gnus summary buffer.

Regards,




reply via email to

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