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
a6e4564e
Commit
a6e4564e
authored
Jun 13, 1998
by
Richard M. Stallman
Browse files
(info-other-window): New function.
parent
4b08b7ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
lisp/info.el
lisp/info.el
+8
-0
No files found.
lisp/info.el
View file @
a6e4564e
...
...
@@ -274,6 +274,14 @@ Do the right thing if the file has been compressed or zipped."
(
call-process-region
(
point-min
)
(
point-max
)
decoder
t
t
)))
(
insert-file-contents
fullname
visit
))))
;;;###autoload
(
defun
info-other-window
(
&optional
file
)
"Like `info' but show the Info buffer in another window."
(
interactive
(
if
current-prefix-arg
(
list
(
read-file-name
"Info file name: "
nil
nil
t
))))
(
let
(
same-window-buffer-names
)
(
info
file
)))
;;;###autoload (add-hook 'same-window-buffer-names "*info*")
;;;###autoload
...
...
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