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

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

bugs in (loop for ... being the key-codes|key-seqs ...)


From: Jonas Bernoulli
Subject: bugs in (loop for ... being the key-codes|key-seqs ...)
Date: Mon, 10 Mar 2008 14:28:24 +0100

Both 22.1 and 23.0.60 are affected.

(loop for key being the key-seqs of
      (let ((map (make-sparse-keymap)))
        (define-key map "a" 'a-97)
        (define-key map "b" 'b-98)
        map)
      collect key)

=> ([97] [97])

but should be:

=> ([98] [97])


(loop for key being the key-codes of
      (let ((map (make-sparse-keymap)))
        (define-key map "a" 'a-97)
        (define-key map "b" 'b-98)
        (set-keymap-parent map
                           (let ((map (make-sparse-keymap)))
                             (define-key map "c" 'c-99)
                             map))
        map)
      collect key)

=> (98 97 99)

but should be:

=> (98 97)

`for VAR being the key-codes of KEYMAP'
     This clause iterates over the entries in KEYMAP.  The iteration
     does not enter nested keymaps or inherited (parent) keymaps.

-- jonas




reply via email to

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