File tree Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change 23
23
(defgeneric quickload (systems &key verbose silent prompt explain &allow-other-keys )
24
24
(:documentation
25
25
" Load SYSTEMS the quicklisp way. SYSTEMS is a designator for a list
26
- of things to be loaded." )
26
+ of things to be loaded.
27
+
28
+ VERBOSE defaults to NIL.
29
+ SILENT defaults to NIL.
30
+ PROMPT defaults to NIL.
31
+ EXPLAIN defaults to T but is not used in the default method.
32
+
33
+ Examples:
34
+
35
+ Load a single SYSTEM like ALEXANDRIA with
36
+ (ql:quickload \" alexandria\" )
37
+ or
38
+ (ql:quickload :alexandria)
39
+
40
+ Load multiple SYSTEMS like ALEXANDRIA and SERAPEUM with
41
+ (ql:quickload '(\" alexandria\" \" serapeum\" ))
42
+ or
43
+ (ql:quickload '(:alexandria :serapeum))
44
+
45
+ Load SYSTEMS with verbose compilation (only dots are displayed otherwise to show the progress)
46
+ (ql:quickload :alexandria :verbose t)
47
+
48
+ Load SYSTEMS suppressing output to *STANDARD-OUTPUT*
49
+ (ql:quickload :alexandria :silent t)
50
+
51
+ Load SYSTEMS and get a prompt whether to continue
52
+ (ql:quickload :alexandria :prompt t)
53
+ " )
27
54
(:method (systems &key
28
55
(prompt *quickload-prompt* )
29
56
(silent nil )
You can’t perform that action at this time.
0 commit comments