|
<h1>untar the enclosed gcl-info.tgz file into a directory where you wish</h1>
<h1>to keep info files: eg</h1>
<p>MYINFODIR=/usr/local/info</p>
<p>cd ${MYINFODIR}
gzip -dc gcl-info.tgz | tar xvf -</p>
<h1>if necessary, add this directory to the default list searched in emacs:</h1>
<h1>(setq Info-default-directory-list (cons "/usr/local/info/" Info-default-directory-list))</h1>
<h1>Decide on an emacs/lisp directory for local .el files eg,</h1>
<p>EMACS_LISP_DIR=/usr/lib/emacs/site-lisp
cp *.el ${EMACS_LISP_DIR}</p>
<h1>if necessary, add this directory to the default list searched in emacs:</h1>
<h1>(setq load-path (cons "/usr/lib/emacs/site-lisp" load-path))</h1>
<h1>add (require 'get-gcl-info) to your .emacs file.</h1>
<h1>or add</h1>
<h1>(autoload 'get-gcl-info "get-gcl-info" "Prompt for a TOPIC or function/variable name and bring up info on thatitem in the buffer" t nil)</h1>
<h1>(define-key (current-global-map) "\M-?" 'get-gcl-info)</h1>
<h1>to your .emacs file</h1>
|