summaryrefslogtreecommitdiff
path: root/lisp/bookmark.el
diff options
context:
space:
mode:
authorKarl Fogel <kfogel@red-bean.com>2007-07-13 18:16:17 +0000
committerKarl Fogel <kfogel@red-bean.com>2007-07-13 18:16:17 +0000
commite8b35914f41470f3b8cd21123826ad0408e915fe (patch)
treef833fc55665aa9d2290629a13b289338669b86f1 /lisp/bookmark.el
parent4153a3ffd073834b23a34ebf05306d24fcc65b34 (diff)
downloademacs-e8b35914f41470f3b8cd21123826ad0408e915fe.tar.gz
* bookmark.el: Don't define bookmark keys under the "C-xr" map;
instead, make "C-xp" a prefix for bookmark-map. Patch by Drew Adams <drew.adams{_AT_}oracle.com>, mildly tweaked by me. See http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00633.html.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r--lisp/bookmark.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 3c1469fef97..156e8affaa5 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -224,10 +224,6 @@ following in your `.emacs' file:
;; Set up these bindings dumping time *only*;
;; if the user alters them, don't override the user when loading bookmark.el.
-;;;###autoload (define-key ctl-x-map "rb" 'bookmark-jump)
-;;;###autoload (define-key ctl-x-map "rm" 'bookmark-set)
-;;;###autoload (define-key ctl-x-map "rl" 'bookmark-bmenu-list)
-
;;;###autoload
(defvar bookmark-map nil
"Keymap containing bindings to bookmark functions.
@@ -238,6 +234,8 @@ functions have a binding in this keymap.")
;;;###autoload (define-prefix-command 'bookmark-map)
+;;;###autoload (define-key ctl-x-map "p" bookmark-map)
+
;; Read the help on all of these functions for details...
;;;###autoload (define-key bookmark-map "x" 'bookmark-set)
;;;###autoload (define-key bookmark-map "m" 'bookmark-set) ; "m" for "mark"