]> git.eshelyaron.com Git - emacs.git/commitdiff
Rebind two global `C-x a' keys "n", "p"
authorJuri Linkov <juri@jurta.org>
Mon, 30 Jun 2008 19:38:33 +0000 (19:38 +0000)
committerJuri Linkov <juri@jurta.org>
Mon, 30 Jun 2008 19:38:33 +0000 (19:38 +0000)
to the new map `abbrev-map' in autoload cookies.

lisp/expand.el

index bfc06229f6860b39bde988e708c7fb3934271409..4507740d979f92b9a1bf6c049b042d96b57dfe87 100644 (file)
@@ -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."