]> git.eshelyaron.com Git - emacs.git/commitdiff
(info-other-window): New function.
authorRichard M. Stallman <rms@gnu.org>
Sat, 13 Jun 1998 06:00:00 +0000 (06:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 13 Jun 1998 06:00:00 +0000 (06:00 +0000)
lisp/info.el

index 244ab2362651440ae4feed31d436ae45b6834b60..a73780a16c40aaa871577dea16ea726620162da8 100644 (file)
@@ -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