tags 32212 + patch quit Stephen Berman writes: > Maybe due to this change: > (defvar subword-mode-map > - (let ((map (make-sparse-keymap))) > - (dolist (cmd '(forward-word backward-word mark-word kill-word > - backward-kill-word transpose-words > - capitalize-word upcase-word downcase-word > - left-word right-word)) > - (let ((othercmd (let ((name (symbol-name cmd))) > - (string-match "\\([[:alpha:]-]+\\)-word[s]?" name) > - (intern (concat "subword-" (match-string 1 name)))))) > - (define-key map (vector 'remap cmd) othercmd))) > - map) > + ;; We originally remapped motion keys here, but now use Emacs core > + ;; hooks. Leave this keymap around so that user additions to it > + ;; keep working. > + (make-sparse-keymap) Aha, then we should just remove it from the docstring, right?