org-compat.el: Remove LABEL argument from pop-to-buffer-same-window call.

* org-compat.el (org-pop-to-buffer-same-window): Remove LABEL
argument from pop-to-buffer-same-window call.
This commit is contained in:
Martin Rudalics 2011-09-02 18:18:56 +02:00 committed by Bastien Guerry
parent d85635306b
commit 4a8634e1a5
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ With two arguments, return floor and remainder of their quotient."
"Pop to buffer specified by BUFFER-OR-NAME in the selected window."
(if (fboundp 'pop-to-buffer-same-window)
(funcall
'pop-to-buffer-same-window buffer-or-name norecord label)
'pop-to-buffer-same-window buffer-or-name norecord)
(funcall 'switch-to-buffer buffer-or-name norecord)))
(provide 'org-compat)