Mercurial > emacs
changeset 96439:5fd9456fa70d
Rebind two global `C-x a' keys "n", "p"
to the new map `abbrev-map' in autoload cookies.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Mon, 30 Jun 2008 19:38:33 +0000 |
parents | 5efd78aaea5b |
children | 4dbdccc0a028 |
files | lisp/expand.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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."