diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-04-02 16:41:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-04-02 16:41:54 +0000 |
commit | d960facb65e370d62b0b0d12c50fdb9bbcdca851 (patch) | |
tree | 54da68b889d0ecd80d68b729227a3e4988ed61c0 | |
parent | f071fdd7d0e9a1f99d5653ce8af2eb4ba96756bc (diff) | |
download | emacs-d960facb65e370d62b0b0d12c50fdb9bbcdca851.tar.gz |
(repeat-history-command): Bug fix. Someone forgot a car.
-rw-r--r-- | lisp/chistory.el | 2 |
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 () |