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

abair@turbinia.oakhill.uucp (Alan Bair) (06/11/89)

After starting to make use of the Emacs Info capabilities, I have
discovered that I do not always want to install data in the /info
directory and the dir file.  These are mainly items that I have either
not completely tested for public usage or ones no one else cares about.

I there some way to run Info on them without actually go through the
installation.  I read about the g(file)node command, but it will not
accept full pathnames and a relative path would be horrible to think
about.

Any help would be greatly appreicated.

Alan Bair
UUCP cs.utexas.edu!oakhill!turbinia!abair

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