]> git.eshelyaron.com Git - emacs.git/commitdiff
* bookmark.el: Don't define bookmark keys under the "C-xr" map;
authorKarl Fogel <kfogel@red-bean.com>
Fri, 13 Jul 2007 18:16:17 +0000 (18:16 +0000)
committerKarl Fogel <kfogel@red-bean.com>
Fri, 13 Jul 2007 18:16:17 +0000 (18:16 +0000)
  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.

lisp/ChangeLog
lisp/bookmark.el

index b6cc633b15384b992e90fe771ab85c1b9ade8d38..942f4468451e6919eb788beb77974708f0fc69be 100644 (file)
@@ -1,3 +1,10 @@
+2007-07-13  Karl Fogel  <kfogel@red-bean.com>
+
+       * 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.
+
 2007-07-13  Carsten Dominik  <dominik@science.uva.nl>
 
        * textmodes/org.el: Bug fixes.
index 3c1469fef9739159712cbdc975889c097b0c792d..156e8affaa5f403cfbe14ab03fb394aee41a5b86 100644 (file)
@@ -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"