[comp.emacs] Running Info on nodes not in /info

maa@ee.sei.cmu.edu (Mark Ardis) (06/12/89)

The following function is for those who want to hack their own
info-nodes and install them in their own directories.

;;; other-info.el -- start info in a different directory
;;; Mark Ardis, SEI, 6/12/89

(require 'info)

(defun other-info (file)
  "Go to a node called 'top' in the Info directory node found in file."
  (interactive "fother-info: Name of file containing node called 'top'? ")
  (Info-find-node file "top"))
---
--
Mark A. Ardis
Software Engineering Institute
Carnegie-Mellon University
Pittsburgh, PA 15213
(412) 268-7636
maa@sei.cmu.edu