summaryrefslogtreecommitdiff
path: root/lisp/bookmark.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-10 06:43:19 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-10 06:43:19 +0000
commit77bc05c744086ed1634ad57c4d0c9df6154a1a5f (patch)
tree0c1da3c90e451c975d09ee533818f370a67c55c0 /lisp/bookmark.el
parentd72236841c1073bcbf28ec3094f1dbb2d65f7291 (diff)
downloademacs-77bc05c744086ed1634ad57c4d0c9df6154a1a5f.tar.gz
Make global bindings only via loaddefs.el.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r--lisp/bookmark.el18
1 files changed, 6 insertions, 12 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index 10a7b45dbef..b41d9fc1158 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -230,19 +230,13 @@ following in your `.emacs' file:
;;; Keymap stuff:
-;; some people have C-x r set to rmail or whatever. We don't want to
-;; assume that C-x r is a prefix map just because it's distributed
-;; that way...
-;; These are the distribution keybindings suggested by RMS, everything
-;; else will be done with M-x or the menubar:
-;;;###autoload
-(if (symbolp (key-binding "\C-xr"))
- nil
- (progn (define-key ctl-x-map "rb" 'bookmark-jump)
- (define-key ctl-x-map "rm" 'bookmark-set)
- (define-key ctl-x-map "rl" 'bookmark-bmenu-list)))
-;; define the map, so it can be bound by those who desire to do so:
+;; 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