aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2008-06-30 19:38:33 +0000
committerJuri Linkov2008-06-30 19:38:33 +0000
commite1dc2a695eb5651d78d9b71a3187683484b0e4e6 (patch)
tree31a2b2df15de3d170ae842bab2aaeda0e8363405
parente132178860d41087c24fcf916a3821fac3471b4a (diff)
downloademacs-e1dc2a695eb5651d78d9b71a3187683484b0e4e6.tar.gz
emacs-e1dc2a695eb5651d78d9b71a3187683484b0e4e6.zip
Rebind two global `C-x a' keys "n", "p"
to the new map `abbrev-map' in autoload cookies.
-rw-r--r--lisp/expand.el4
1 files changed, 2 insertions, 2 deletions
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'."
427 (goto-char (aref expand-pos expand-index)) 427 (goto-char (aref expand-pos expand-index))
428 (run-hooks 'expand-jump-hook)))) 428 (run-hooks 'expand-jump-hook))))
429 429
430;;;###autoload (define-key ctl-x-map "ap" 'expand-jump-to-previous-slot) 430;;;###autoload (define-key abbrev-map "p" 'expand-jump-to-previous-slot)
431;;;###autoload (define-key ctl-x-map "an" 'expand-jump-to-next-slot) 431;;;###autoload (define-key abbrev-map "n" 'expand-jump-to-next-slot)
432 432
433(defun expand-build-list (len l) 433(defun expand-build-list (len l)
434 "Build a vector of offset positions from the list of positions." 434 "Build a vector of offset positions from the list of positions."