Mercurial > hg > xemacs-beta
comparison lisp/startup.el @ 996:25e260cb7994
[xemacs-hg @ 2002-09-10 15:27:02 by james]
Enable unloading of dynamic modules. Create the first two internal XEmacs
modules: LDAP and postgreSQL. Update the sample directory to contain a
sample internal XEmacs module and a sample external XEmacs module. Improve
support for autoloading modules. Make internal module code compile into the
XEmacs binary if XEmacs is configured without module support. Make the
internal module directories self-contained so that they can be distributed
separately from XEmacs.
author | james |
---|---|
date | Tue, 10 Sep 2002 15:27:39 +0000 |
parents | d41e92ee6d12 |
children | 37bdd24225ef |
comparison
equal
deleted
inserted
replaced
995:4575a219af58 | 996:25e260cb7994 |
---|---|
1413 (if (and (not inhibit-autoloads) | 1413 (if (and (not inhibit-autoloads) |
1414 lisp-directory) | 1414 lisp-directory) |
1415 (load (expand-file-name (file-name-sans-extension autoload-file-name) | 1415 (load (expand-file-name (file-name-sans-extension autoload-file-name) |
1416 lisp-directory) nil t)) | 1416 lisp-directory) nil t)) |
1417 | 1417 |
1418 ;; Hey! Let's use a packages-* function for a non-package purpose! | |
1419 (if (and (not inhibit-autoloads) (featurep 'modules)) | |
1420 (packages-load-package-auto-autoloads module-load-path)) | |
1421 | |
1418 (if (and (not inhibit-autoloads) (not inhibit-all-packages)) | 1422 (if (and (not inhibit-autoloads) (not inhibit-all-packages)) |
1419 (progn | 1423 (progn |
1420 (if (not inhibit-early-packages) | 1424 (if (not inhibit-early-packages) |
1421 (packages-load-package-auto-autoloads early-package-load-path)) | 1425 (packages-load-package-auto-autoloads early-package-load-path)) |
1422 (packages-load-package-auto-autoloads late-package-load-path) | 1426 (packages-load-package-auto-autoloads late-package-load-path) |