diff options
| author | Martin Rudalics | 2016-08-25 11:04:46 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2016-08-25 11:04:46 +0200 |
| commit | 95c82efdb141029de89d9136a9ce4fe907de7c5e (patch) | |
| tree | 8a0df814b6a3e51a373cd2ce8fc51f33f900def2 | |
| parent | 63415a53c7ad31d51295c25423a9151b6737d6be (diff) | |
| download | emacs-95c82efdb141029de89d9136a9ce4fe907de7c5e.tar.gz emacs-95c82efdb141029de89d9136a9ce4fe907de7c5e.zip | |
In ‘clone-indirect-buffer’ fix argument mixup (Bug#24306)
* lisp/simple.el (clone-indirect-buffer): Add value for ACTION
argument in `pop-to-buffer' call (Bug#24306).
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 51b24bb3ffb..6105f016b90 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -8419,7 +8419,7 @@ Returns the newly created indirect buffer." | |||
| 8419 | (with-current-buffer buffer | 8419 | (with-current-buffer buffer |
| 8420 | (run-hooks 'clone-indirect-buffer-hook)) | 8420 | (run-hooks 'clone-indirect-buffer-hook)) |
| 8421 | (when display-flag | 8421 | (when display-flag |
| 8422 | (pop-to-buffer buffer norecord)) | 8422 | (pop-to-buffer buffer nil norecord)) |
| 8423 | buffer)) | 8423 | buffer)) |
| 8424 | 8424 | ||
| 8425 | 8425 | ||