From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00,INVALID_DATE autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,67f41d422ac1ea65 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1994-09-18 11:27:25 PST Path: bga.com!news.sprintlink.net!howland.reston.ans.net!math.ohio-state.edu!usc!nic-nac.CSU.net!charnel.ecst.csuchico.edu!olivea!koriel!lll-winken.llnl.gov!fastrac.llnl.gov!cronkite.nersc.gov!dancer.ca.sandia.gov!overload.lbl.gov!dog.ee.lbl.gov!gundog.lbl.gov!rolf From: rolf@gundog.lbl.gov (rolf ebert) Newsgroups: comp.lang.ada Subject: Re: Emacs-ada-mode Installation Problems Date: 16 Sep 1994 23:05:09 GMT Organization: Lawrence Berkeley Laboratory Distribution: world Message-ID: <41437@dog.ee.lbl.gov> References: NNTP-Posting-Host: 128.3.254.10 Keywords: emacs, gnat Date: 1994-09-16T23:05:09+00:00 List-Id: the load path is the path where Emacs looks for input files. The online documentation (C-h v load-path) gives (for me): load-path's value is ("/u3/rolf/unix/elisp" "/u3/rolf/unix/elisp/devel" "/u7/rolf/gnu/lib/emacs/site-lisp" "/u7/rolf/gnu/lib/emacs/19.26/lisp") Documentation: *List of directories to search for files to load. Each element is a string (directory name) or nil (try default directory). Initialized based on EMACSLOADPATH environment variable, if any, otherwise to default specified by file `paths.h' when Emacs was built. You can add your personal extensions to Emacs with the following lines in your .emacs: (defun add-to-load-path (directory-list) (mapcar (function (lambda (directory) (or (member directory load-path) (setq load-path (cons directory load-path))))) directory-list)) ;(add-to-load-path (list "/path/one" ; "/path/two" ; "/blah/blah/blah")) (add-to-load-path (list (expand-file-name "~/elisp") (expand-file-name "~/elisp/devel")) This adds the 2 directories to the load-path. Put there your newly purchased ada-mode.el and it should work now. Mail me if you still have problems. Rolf