projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e18950d
)
Fix return value.
author
Olof-Joachim Frahm
<olof@macrolet.net>
Sat, 18 May 2013 00:29:55 +0000
(
02:29
+0200)
committer
Olof-Joachim Frahm
<olof@macrolet.net>
Sat, 18 May 2013 00:29:55 +0000
(
02:29
+0200)
src/package.lisp
patch
|
blob
|
history
diff --git
a/src/package.lisp
b/src/package.lisp
index
834a95a
..
b74fbaa
100644
(file)
--- a/
src/package.lisp
+++ b/
src/package.lisp
@@
-175,7
+175,7
@@
(defun find-all-symbols (string)
(let (symbols)
- (dolist (package *package-list*)
+ (dolist (package *package-list* symbols)
(multiple-value-bind (symbol status) (find-symbol string package)
(when status
(pushnew symbol symbols :test #'eq))))))