diff options
author | Martin Rudalics <rudalics@gmx.at> | 2016-08-25 11:04:46 +0200 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2016-08-25 11:04:46 +0200 |
commit | 95c82efdb141029de89d9136a9ce4fe907de7c5e (patch) | |
tree | 8a0df814b6a3e51a373cd2ce8fc51f33f900def2 /lisp | |
parent | 63415a53c7ad31d51295c25423a9151b6737d6be (diff) |
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).
Diffstat (limited to 'lisp')
-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 51b24bb3ff..6105f016b9 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -8419,7 +8419,7 @@ Returns the newly created indirect buffer." (with-current-buffer buffer (run-hooks 'clone-indirect-buffer-hook)) (when display-flag - (pop-to-buffer buffer norecord)) + (pop-to-buffer buffer nil norecord)) buffer)) |