Added "display packages" as the default action

svn: r5083
This commit is contained in:
Jacob Matthews 2006-12-11 18:50:02 +00:00
parent 68ca259b32
commit e01ec2dc9d

View File

@ -106,7 +106,10 @@ PLANNED FEATURES:
"Remove all linkage the given module has, forcing it to upgrade" "Remove all linkage the given module has, forcing it to upgrade"
...))) ...)))
(for-each (lambda (f) (f)) actions)) (cond
; make showing the installed packages the default thing to do.
[(null? actions) (show-installed-packages)]
[else (for-each (lambda (f) (f)) actions)]))
;; ============================================================ ;; ============================================================
;; FEATURE IMPLEMENTATIONS ;; FEATURE IMPLEMENTATIONS