Mercurial > hg > xemacs-beta
comparison lisp/site-load.el @ 253:157b30c96d03 r20-5b25
Import from CVS: tag r20-5b25
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:20:27 +0200 |
parents | 850242ba4a81 |
children | 966663fcf606 |
comparison
equal
deleted
inserted
replaced
252:afb15df44434 | 253:157b30c96d03 |
---|---|
12 ;; The site-load.el mechanism is provided so XEmacs installers can easily | 12 ;; The site-load.el mechanism is provided so XEmacs installers can easily |
13 ;; dump lisp packages with XEmacs that do not get dumped standardly. | 13 ;; dump lisp packages with XEmacs that do not get dumped standardly. |
14 | 14 |
15 ;; The file `site-packages' if it exists should look something like: | 15 ;; The file `site-packages' if it exists should look something like: |
16 ;; (setq site-load-packages '( | 16 ;; (setq site-load-packages '( |
17 ;; "../lisp/modes/cc-mode" | 17 ;; "../lisp/modes/cc-mode.elc" |
18 ;; "../lisp/utils/redo" | 18 ;; "../lisp/utils/redo.elc" |
19 ;; "../lisp/packages/scroll-in-place" | 19 ;; "../lisp/packages/scroll-in-place.elc" |
20 ;; ) | 20 ;; ) |
21 ;; ) | 21 ;; ) |
22 | 22 |
23 ;; The first line and the last line must be exact. Each of the packages | 23 ;; The first line and the last line must be exact. Each of the packages |
24 ;; listed must be double quoted, have either an absolute path, or a relative | 24 ;; listed must be double quoted, have either an absolute path, or a relative |
25 ;; to the build src directory path *and* be bytecompiled prior to the attempt | 25 ;; to the build src directory path *and* be bytecompiled prior to the attempt |
26 ;; to dump. | 26 ;; to dump. They also must explicitly have the .elc extension. |
27 | 27 |
28 ;; Because this is a trial implementation and the file is shared with | 28 ;; Because this is a trial implementation and the file is shared with |
29 ;; make-docfiles, syntax is strict and unforgiving. So sue me. It | 29 ;; make-docfiles, syntax is strict and unforgiving. So sue me. It |
30 ;; is still better than the way it used to be. | 30 ;; is still better than the way it used to be. |
31 | 31 |