From: Juri Linkov Date: Mon, 30 Jun 2008 19:38:33 +0000 (+0000) Subject: Rebind two global `C-x a' keys "n", "p" X-Git-Tag: emacs-pretest-23.0.90~4384 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e1dc2a695eb5651d78d9b71a3187683484b0e4e6;p=emacs.git Rebind two global `C-x a' keys "n", "p" to the new map `abbrev-map' in autoload cookies. --- diff --git a/lisp/expand.el b/lisp/expand.el index bfc06229f68..4507740d979 100644 --- a/lisp/expand.el +++ b/lisp/expand.el @@ -427,8 +427,8 @@ This is used only in conjunction with `expand-add-abbrevs'." (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."