Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4c6a4739
Commit
4c6a4739
authored
May 17, 2001
by
Eli Zaretskii
Browse files
(switch-to-buffer-other-window, switch-to-buffer-other-frame): Add an xref
to display-buffer in the doc string.
parent
e0704d3b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/files.el
lisp/files.el
+8
-2
No files found.
lisp/ChangeLog
View file @
4c6a4739
2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
* files.el (switch-to-buffer-other-window)
(switch-to-buffer-other-frame): Add an xref to display-buffer in
the doc string.
2001-05-17 Gerd Moellmann <gerd@gnu.org>
* language/slovak.el, language/czech.el: New maintainer.
...
...
lisp/files.el
View file @
4c6a4739
...
...
@@ -700,7 +700,10 @@ unlike `file-truename'."
(defun switch-to-buffer-other-window (buffer &optional norecord)
"Select buffer BUFFER in another window.
Optional second arg NORECORD non-nil means
do not put this buffer at the front of the list of recently selected ones."
do not put this buffer at the front of the list of recently selected ones.
This uses the function `display-buffer' as a subroutine; see its
documentation for additional customization information."
(interactive "BSwitch to buffer in other window: ")
(let ((pop-up-windows t))
(pop-to-buffer buffer t norecord)))
...
...
@@ -708,7 +711,10 @@ do not put this buffer at the front of the list of recently selected ones."
(defun switch-to-buffer-other-frame (buffer &optional norecord)
"Switch to buffer BUFFER in another frame.
Optional second arg NORECORD non-nil means
do not put this buffer at the front of the list of recently selected ones."
do not put this buffer at the front of the list of recently selected ones.
This uses the function `display-buffer' as a subroutine; see its
documentation for additional customization information."
(interactive "BSwitch to buffer in other frame: ")
(let ((pop-up-frames t))
(pop-to-buffer buffer t norecord)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment