summaryrefslogtreecommitdiff
path: root/lisp/iswitchb.el
diff options
context:
space:
mode:
authorStephen Eglen <stephen@gnu.org>1999-10-24 17:00:47 +0000
committerStephen Eglen <stephen@gnu.org>1999-10-24 17:00:47 +0000
commit322524b204ededaad4b001128412b537a6399d1a (patch)
tree12e8f8c52aac2e624d7531723f024df217639b2f /lisp/iswitchb.el
parent2a3d7146168ebec675d12ea3db199f7696f68ab7 (diff)
downloademacs-322524b204ededaad4b001128412b537a6399d1a.tar.gz
iswitchb-default-keybindings: no-need for read-kbd-macro.
Diffstat (limited to 'lisp/iswitchb.el')
-rw-r--r--lisp/iswitchb.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el
index 0cc379fc2bc..5d18ce765bd 100644
--- a/lisp/iswitchb.el
+++ b/lisp/iswitchb.el
@@ -974,10 +974,10 @@ Call this function to override the normal bindings. This function also
adds a hook to the minibuffer."
(interactive)
(add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
- (global-set-key (read-kbd-macro "C-x b") 'iswitchb-buffer)
- (global-set-key (read-kbd-macro "C-x 4 b") 'iswitchb-buffer-other-window)
- (global-set-key (read-kbd-macro "C-x 4 C-o") 'iswitchb-display-buffer)
- (global-set-key (read-kbd-macro "C-x 5 b") 'iswitchb-buffer-other-frame))
+ (global-set-key "\C-xb" 'iswitchb-buffer)
+ (global-set-key "\C-x4b" 'iswitchb-buffer-other-window)
+ (global-set-key "\C-x4\C-o" 'iswitchb-display-buffer)
+ (global-set-key "\C-x5b" 'iswitchb-buffer-other-frame))
;;;###autoload
(defun iswitchb-buffer ()