# HG changeset patch # User Juri Linkov # Date 1214854713 0 # Node ID 5fd9456fa70da94d940b29ae84aa80161664d52c # Parent 5efd78aaea5b37cc0bb79be4f4d8c9d7f4b619af Rebind two global `C-x a' keys "n", "p" to the new map `abbrev-map' in autoload cookies. diff -r 5efd78aaea5b -r 5fd9456fa70d lisp/expand.el --- a/lisp/expand.el Mon Jun 30 19:37:44 2008 +0000 +++ b/lisp/expand.el Mon Jun 30 19:38:33 2008 +0000 @@ -427,8 +427,8 @@ (goto-char (aref expand-pos expand-index)) (run-hooks 'expand-jump-hook)))) -;;;###autoload (define-key ctl-x-map "ap" 'expand-jump-to-previous-slot) -;;;###autoload (define-key ctl-x-map "an" 'expand-jump-to-next-slot) +;;;###autoload (define-key abbrev-map "p" 'expand-jump-to-previous-slot) +;;;###autoload (define-key abbrev-map "n" 'expand-jump-to-next-slot) (defun expand-build-list (len l) "Build a vector of offset positions from the list of positions."