minor-mode-map-alistの優先順位

minor-mode-map-alist is a variable defined in `C source code'.
Its value is shown below.

Documentation:
Alist of keymaps to use for minor modes.
Each element looks like (VARIABLE . KEYMAP); KEYMAP is used to read
key sequences and look up bindings iff VARIABLE's value is non-nil.
If two active keymaps bind the same key, the keymap appearing earlier
in the list takes precedence.

minor modeを複数有効にしている場合、リストの浅い方の定義が優先される。新しいminor modeがインストールされるときにどんどんprependされるため、後からインストールした方が優先度が高いということになる。んー、奥が深い。