

# untar the enclosed gcl-info.tgz file into a directory where you wish
# to keep info files: eg
MYINFODIR=/usr/local/info
# 
cd ${MYINFODIR}
gzip -dc gcl-info.tgz | tar xvf -

# if necessary, add this directory to the default list searched in emacs:
# (setq Info-default-directory-list (cons "/usr/local/info/"  Info-default-directory-list))

# Decide on an emacs/lisp directory for local .el files eg,
EMACS_LISP_DIR=/usr/lib/emacs/site-lisp
cp *.el ${EMACS_LISP_DIR}

# if necessary, add this directory to the default list searched in emacs:
# (setq load-path (cons "/usr/lib/emacs/site-lisp" load-path))

# add (require 'get-gcl-info) to your .emacs file.
# or  add
# (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)
# (define-key (current-global-map) "\M-?"  'get-gcl-info)
# to your .emacs file


     







