diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-09-02 12:38:40 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-09-02 12:38:40 -0400 |
commit | c33134511b466d746312becbc0e4ef59bb9258ac (patch) | |
tree | 17693629f53ccd288c4c13cdd9f2a65ed5a1941a /lisp/org/org-src.el | |
parent | 81ec0c88f2f27c090c5928f78a9c6afb8c1b2f72 (diff) | |
download | emacs-c33134511b466d746312becbc0e4ef59bb9258ac.tar.gz emacs-c33134511b466d746312becbc0e4ef59bb9258ac.tar.bz2 emacs-c33134511b466d746312becbc0e4ef59bb9258ac.zip |
Remove pop-to-buffer-same-window.
* lisp/window.el (pop-to-buffer-1, pop-to-buffer-same-window): Deleted.
(pop-to-buffer): Change interactive spec. Pass second argument
directly to display-buffer.
(display-buffer): Fix interactive spec. Use functionp to
distinguish between a function and a list of functions.
* lisp/abbrev.el (edit-abbrevs):
* lisp/arc-mode.el (archive-extract):
* lisp/autoinsert.el (auto-insert):
* lisp/bookmark.el (bookmark-bmenu-list):
* lisp/files.el (find-file):
* lisp/view.el (view-buffer):
* lisp/progmodes/compile.el (compilation-goto-locus):
* lisp/textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
* lisp/org/ob-ref.el (org-babel-ref-goto-headline-id):
* lisp/org/org.el (org-get-location, org-tree-to-indirect-buffer)
(org-mark-ring-goto, org-refile, org-add-log-note)
(org-revert-all-org-buffers, org-switchb)
(org-cycle-agenda-files, org-submit-bug-report)
(org-goto-marker-or-bmk):
* lisp/org/org-agenda.el (org-prepare-agenda, org-agenda-switch-to):
* lisp/org/org-capture.el (org-capture-goto-target)
(org-capture-fill-template):
* lisp/org/org-clock.el (org-clock-goto):
* lisp/org/org-ctags.el (org-ctags-visit-buffer-or-file):
* lisp/org/org-exp.el (org-export-as-org):
* lisp/org/org-feed.el (org-feed-show-raw-feed):
* lisp/org/org-html.el (org-export-htmlize-generate-css):
* lisp/org/org-id.el (org-id-goto):
* lisp/org/org-irc.el (org-irc-visit-erc):
* lisp/org/org-mobile.el (org-mobile-apply):
* lisp/org/org-publish.el (org-publish-org-to, org-publish-find-date):
* lisp/org/org-remember.el (org-go-to-remember-target):
* lisp/org/org-src.el (org-src-switch-to-buffer)
(org-edit-fixed-width-region): Use switch-to-buffer.
* lisp/org/org-compat.el (org-pop-to-buffer-same-window): Deleted.
Diffstat (limited to 'lisp/org/org-src.el')
-rw-r--r-- | lisp/org/org-src.el | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lisp/org/org-src.el b/lisp/org/org-src.el index dd56b120219..5de55fa455f 100644 --- a/lisp/org/org-src.el +++ b/lisp/org/org-src.el @@ -42,8 +42,6 @@ (declare-function org-at-table.el-p "org" ()) (declare-function org-get-indentation "org" (&optional line)) (declare-function org-switch-to-buffer-other-window "org" (&rest args)) -(declare-function org-pop-to-buffer-same-window - "org-compat" (&optional buffer-or-name norecord label)) (defcustom org-edit-src-region-extra nil "Additional regexps to identify regions for editing with `org-edit-src-code'. @@ -341,7 +339,7 @@ buffer." (defun org-src-switch-to-buffer (buffer context) (case org-src-window-setup ('current-window - (org-pop-to-buffer-same-window buffer)) + (switch-to-buffer buffer)) ('other-window (switch-to-buffer-other-window buffer)) ('other-frame @@ -352,7 +350,7 @@ buffer." (delete-frame frame))) ('save (kill-buffer (current-buffer)) - (org-pop-to-buffer-same-window buffer)) + (switch-to-buffer buffer)) (t (switch-to-buffer-other-frame buffer)))) ('reorganize-frame @@ -364,7 +362,7 @@ buffer." (t (message "Invalid value %s for org-src-window-setup" (symbol-name org-src-window-setup)) - (org-pop-to-buffer-same-window buffer)))) + (switch-to-buffer buffer)))) (defun org-src-construct-edit-buffer-name (org-buffer-name lang) "Construct the buffer name for a source editing buffer." @@ -424,7 +422,7 @@ the fragment in the Org-mode buffer." begline (save-excursion (goto-char beg) (org-current-line))) (if (and (setq buffer (org-edit-src-find-buffer beg end)) (y-or-n-p "Return to existing edit buffer? [n] will revert changes: ")) - (org-pop-to-buffer-same-window buffer) + (switch-to-buffer buffer) (when buffer (with-current-buffer buffer (if (boundp 'org-edit-src-overlay) @@ -444,7 +442,7 @@ the fragment in the Org-mode buffer." (define-key map [mouse-1] 'org-edit-src-continue) map)) (overlay-put ovl :read-only "Leave me alone") - (org-pop-to-buffer-same-window buffer) + (switch-to-buffer buffer) (insert code) (remove-text-properties (point-min) (point-max) '(display nil invisible nil intangible nil)) |