Skip to content

Commit adaa1ed

Browse files
committed
Merge pull request #127 from attila-lendvai/smallies
Small changes, notably extending .gitignore
2 parents 032e10a + 490c693 commit adaa1ed

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,10 @@
22
*~
33
quicklisp.tar
44
quicklisp.tar.gz
5+
asdf.lisp.*
6+
cache
7+
client-info.sexp
8+
dists
9+
local-projects
10+
retired
11+
tmp

quicklisp/setup.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
(when (and (consp form)
133133
(eq (first form) 'cl:defpackage)
134134
(ignore-errors (string (second form))))
135-
(show-package (second form)))
135+
(show-package (second form)))
136136
(incf seen-so-far)
137137
(when (<= forms-per-char seen-so-far)
138138
(setf seen-so-far 0)
@@ -158,7 +158,7 @@
158158
(call-with-macroexpand-progress
159159
(lambda ()
160160
(format t "~&; Loading ~S~%" (name strategy))
161-
(asdf:oos 'asdf:load-op (name strategy) :verbose nil))))
161+
(asdf:load-system (name strategy) :verbose nil))))
162162

163163
(defun autoload-system-and-dependencies (name &key prompt)
164164
"Try to load the system named by NAME, automatically loading any

0 commit comments

Comments
 (0)