Mercurial > emacs
changeset 81842:33f16eb11afa
* 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.
author | Karl Fogel <kfogel@red-bean.com> |
---|---|
date | Fri, 13 Jul 2007 18:16:17 +0000 |
parents | 22dc3b6be3d4 |
children | c5cef7ba9eeb |
files | lisp/ChangeLog lisp/bookmark.el |
diffstat | 2 files changed, 9 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Jul 13 16:08:46 2007 +0000 +++ b/lisp/ChangeLog Fri Jul 13 18:16:17 2007 +0000 @@ -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.
--- a/lisp/bookmark.el Fri Jul 13 16:08:46 2007 +0000 +++ b/lisp/bookmark.el Fri Jul 13 18:16:17 2007 +0000 @@ -224,10 +224,6 @@ ;; 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 @@ ;;;###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"