summaryrefslogtreecommitdiff
path: root/lisp/chistory.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1993-04-02 16:41:54 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1993-04-02 16:41:54 +0000
commitdd4e1002eb7237415dfc49967fbee2b0d066d799 (patch)
tree44f5b763b43d7c020ba48d0e1fd3902ef3c08870 /lisp/chistory.el
parent315b23696a1d93513dc8c376beee416f10006346 (diff)
downloademacs-dd4e1002eb7237415dfc49967fbee2b0d066d799.tar.gz
(repeat-history-command): Bug fix. Someone forgot a car.
Diffstat (limited to 'lisp/chistory.el')
-rw-r--r--lisp/chistory.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/chistory.el b/lisp/chistory.el
index 403fb0b24e9..64fe7c8688d 100644
--- a/lisp/chistory.el
+++ b/lisp/chistory.el
@@ -151,7 +151,7 @@ The buffer for that command is the previous current buffer."
(beginning-of-line)
(read (current-buffer)))
(set-buffer
- (cdr (buffer-list)))))))
+ (car (cdr (buffer-list))))))))
;;;###autoload
(defun command-history-mode ()