summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-02-12 18:55:27 +0100
committerCarsten Dominik <carsten.dominik@gmail.com>2010-02-12 18:55:27 +0100
commitb3e92a81931ac831b6f5e22f5f3762eb879bdef1 (patch)
tree9e0e05ab94192b977543f102d20ddbf50d1e2ac5
parent6e33c3fc3c6a4e3b313d67a4ed11bbaa1861f39d (diff)
downloadorg-mode-b3e92a81931ac831b6f5e22f5f3762eb879bdef1.tar.gz
Make sure the org-goto buffer comes up in the current frame
-rwxr-xr-xlisp/ChangeLog3
-rw-r--r--lisp/org.el6
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 32b5ccd..31f5fc0 100755
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2010-02-12 Carsten Dominik <carsten.dominik@gmail.com>
+ * org.el (org-get-location): Make sure the selection buffer is
+ shown in the current frame.
+
* org-ascii.el (org-export-ascii-table-widen-columns): New
option.
(org-export-ascii-preprocess): Realign tables to remove narrowing
diff --git a/lisp/org.el b/lisp/org.el
index 640802a..f237367 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -5903,7 +5903,11 @@ or nil."
(isearch-hide-immediately nil)
(isearch-search-fun-function
(lambda () 'org-goto-local-search-headings))
- (org-goto-selected-point org-goto-exit-command))
+ (org-goto-selected-point org-goto-exit-command)
+ (pop-up-frames nil)
+ (special-display-buffer-names nil)
+ (special-display-regexps nil)
+ (special-display-function nil))
(save-excursion
(save-window-excursion
(delete-other-windows)