From 4a8634e1a53c7771db33a31b5f1570e6a0e4e36f Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Fri, 2 Sep 2011 18:18:56 +0200 Subject: [PATCH] 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. --- lisp/org-compat.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-compat.el b/lisp/org-compat.el index 3e9c202d2..3577db695 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -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)