lispdoc - results for load |
(load pathspec &key (verbose *load-verbose*) (print *load-print*) (if-does-not-exist t) (external-format default)) | Function: Load the file given by FILESPEC into the Lisp environment, returning T on success.
|
Example:(defun compile-paip-file (name) (let ((path (paip-pathname name :lisp))) (load path) (compile-file path :output-file (paip-pathname name :binary)))) | Mentioned in: CLtL2 - 11.7. Package System Functions and Variables CLtL2 - 11.9. An Example CLtL2 - 22.1.4. Standard Dispatching Macro Character Syntax CLtL2 - 23.1.6. Pathname Functions CLtL2 - 23.4. Loading Files CLtL2 - 25.1. The Compiler CLtL2 - 25.1.2. Compiled Functions CLtL2 - 25.1.4. Similarity of Constants CLtL2 - 5.3.3. Control of Time of Evaluation CLtL2 - 6.3. Equality Predicates HyperSpec - Function LOAD PCL - defining your own packages PCL - delivering applications PCL - eval when PCL - features and read time conditionalization PCL - macros PCL - other special operators PCL - package gotchas PCL - packaging mechanics PCL - saving your work PCL - where to go next Successful Lisp - chapter31 |
asdf:load-op | Undocumented
|
*load-print* | Variable: the default for the :PRINT argument to LOAD
|
| Mentioned in: CLtL2 - 23.4. Loading Files HyperSpec - Variable *LOAD-PRINT*, *LOAD-VERBOSE | |
*load-verbose | |
| Mentioned in: HyperSpec - Variable *LOAD-PRINT*, *LOAD-VERBOSE | |
*load-verbose* | Variable: the default for the :VERBOSE argument to LOAD
|
| Mentioned in: CLtL2 - 23.4. Loading Files | |
*load-truename | |
| Mentioned in: HyperSpec - Variable *LOAD-PATHNAME*, *LOAD-TRUENAME | |
*load-pathname* | Variable: the defaulted pathname that LOAD is currently loading
|
| Mentioned in: CLtL2 - 23.4. Loading Files HyperSpec - Variable *LOAD-PATHNAME*, *LOAD-TRUENAME | |
*load-truename* | Variable: the TRUENAME of the file that LOAD is currently loading
|
| Mentioned in: CLtL2 - 23.4. Loading Files | |
(asdf:load-system system &rest args &key force verbose version &allow-other-keys) | Function: Shorthand for `(operate 'asdf:load-op system)`. See OPERATE for details.
|
(make-load-form object &optional environment) | Undocumented
|
| Mentioned in: CLtL2 - 22.1.6. What the Print Function Produces CLtL2 - 23.4. Loading Files CLtL2 - 25.1. The Compiler CLtL2 - 25.1.4. Similarity of Constants HyperSpec - Standard Generic Function MAKE-LOAD-FORM | |
(load-time-value form &optional read-only-p) | Function: Arrange for FORM to be evaluated at load-time and use the value produced as if it were a constant. If READ-ONLY-P is non-NIL, then the resultant object is guaranteed to never be modified, so it can be put in read-only storage.
|
| Mentioned in: CLtL2 - 25.1. The Compiler CLtL2 - 25.1.2. Compiled Functions HyperSpec - Special Operator LOAD-TIME-VALUE PCL - other special operators | |
asdf:load-source-op | Undocumented
|
(cffi:load-foreign-library library &key search-path) | Function: Loads a foreign LIBRARY which can be a symbol denoting a library defined through DEFINE-FOREIGN-LIBRARY; a pathname or string in which case we try to load it directly first then search for it in *FOREIGN-LIBRARY-DIRECTORIES*; or finally list: either (:or lib1 lib2) or (:framework <framework-name>).
|
(cffi-sys:%load-foreign-library name path) | Function: Load a foreign library.
|
cffi:load-foreign-library-error | Undocumented
|
(make-load-form-saving-slots object &key (slot-names nil slot-names-p) environment) | Undocumented
|
| Mentioned in: CLtL2 - 23.4. Loading Files HyperSpec - Function MAKE-LOAD-FORM-SAVING-SLOTS | |
asdf:load-system-definition-error | Undocumented
|
(load-logical-pathname-translations host) | Function: Reads logical pathname translations from SYS:SITE;HOST.TRANSLATIONS.NEWEST, with HOST replaced by the supplied parameter. Returns T on success. If HOST is already defined as logical pathname host, no file is loaded and NIL is returned. The file should contain a single form, suitable for use with (SETF LOGICAL-PATHNAME-TRANSLATIONS). Note: behaviour of this function is higly implementation dependent, and historically it used to be a no-op in SBcL -- the current approach is somewhat experimental and subject to change.
|
| Mentioned in: CLtL2 - 23.1.5.3. Using Logical Pathnames CLtL2 - 23.1.5.5. Discussion of Logical Pathnames HyperSpec - Function LOAD-LOGICAL-PATHNAME-TRANSLATIONS | |
ql-release-index:load-quicklisp-index | Undocumented
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |