I haven't looked into this in detail - forgive my incomplete understanding. I'm looking for help on where-is-internal - as regards command remapping (I guess).
In previous Emacs versions, I could do this, to bind stuff that is bound to self-insert-command in the global map: (dolist (key (where-is-internal 'self-insert-command global-map)) (define-key my-map key 'my-command)) Now, however, it looks like I need to do something like the following. Let me know if I'm missing something, and there is a simpler way. (dolist (key (or (condition-case nil (where-is-internal 'self-insert-command global-map nil nil t) (wrong-number-of-arguments nil)) (where-is-internal 'self-insert-command global-map))) ; use old version (define-key my-map key 'my-command)) IIUC (probably not), the 5th arg to where-is-internal is needed here, because of some remapping done to self-insert-command (?). The NEWS file says this, for Emacs 22.1: `where-is-internal' now returns nil for a remapped command (e.g. `kill-line', when `my-mode' is enabled), and the actual key binding for the command it is remapped to (e.g. C-k for my-kill-line). It also has a new optional fifth argument, NO-REMAP, which inhibits remapping if non-nil (e.g. it returns "C-k" for `kill-line', and "<kill-line>" for `my-kill-line') I guess that explains what's going on here, but I don't quite follow it. I also searched NEWS for info on self-insert, but I didn't see anything that I understood as being related. All I know is that if I don't use a non-nil 5th argument, I don't get the bindings I'm after; if I do use it, that works. I'm guessing that self-insert-command must be remapped, and that is why I need to use a non-nil 5th arg - to prevent where-is-internal from returning nil for each of the (remapped) self-insert-command bindings. Could someone please clear up for me just what is going on here? In ignorance, I'm thinking that the new 5th arg should be defined the other way 'round: nil should do what t does now, to give better backward compatibility. That way (I think), I would be able to do just (where-is-internal 'self-insert-command global-map) in all Emacs versions. Please let me know what I'm missing (>= 80%, I'm sure). Thanks. _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel