diff options
author | Stephen Eglen <stephen@gnu.org> | 1999-10-24 17:00:47 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1999-10-24 17:00:47 +0000 |
commit | 322524b204ededaad4b001128412b537a6399d1a (patch) | |
tree | 12e8f8c52aac2e624d7531723f024df217639b2f /lisp | |
parent | 2a3d7146168ebec675d12ea3db199f7696f68ab7 (diff) | |
download | emacs-322524b204ededaad4b001128412b537a6399d1a.tar.gz |
iswitchb-default-keybindings: no-need for read-kbd-macro.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/iswitchb.el | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4880d20a68a..a1c9002503b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +1999-10-24 Stephen Eglen <stephen@gnu.org> + + * iswitchb.el (iswitchb-default-keybindings): No need to use + read-kbd-macro in keybindings. + 1999-10-23 Dave Love <fx@gnu.org> * elide-head.el: New file. 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 () |