Mercurial > emacs
changeset 26155:6f7db3f3698d
iswitchb-default-keybindings: no-need for read-kbd-macro.
author | Stephen Eglen <stephen@gnu.org> |
---|---|
date | Sun, 24 Oct 1999 16:56:21 +0000 |
parents | 6d116c426979 |
children | 9a67e9379891 |
files | lisp/iswitchb.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/iswitchb.el Sat Oct 23 22:44:26 1999 +0000 +++ b/lisp/iswitchb.el Sun Oct 24 16:56:21 1999 +0000 @@ -974,10 +974,10 @@ 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 ()