]> git.eshelyaron.com Git - emacs.git/commitdiff
iswitchb-default-keybindings: no-need for read-kbd-macro.
authorStephen Eglen <stephen@gnu.org>
Sun, 24 Oct 1999 17:00:47 +0000 (17:00 +0000)
committerStephen Eglen <stephen@gnu.org>
Sun, 24 Oct 1999 17:00:47 +0000 (17:00 +0000)
lisp/ChangeLog
lisp/iswitchb.el

index 4880d20a68a1491c14d82a589c0f7a6e89dc9504..a1c9002503b9063d8a18f005902f454d6c84c524 100644 (file)
@@ -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.
index 0cc379fc2bcb042ef18f0d15438e8bd2d56e3b65..5d18ce765bd9abc1dde9f1caccf6a80a1d5018c2 100644 (file)
@@ -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 ()