From e01ec2dc9ddfc19d276ae67a2c64cf7441cf09e0 Mon Sep 17 00:00:00 2001 From: Jacob Matthews Date: Mon, 11 Dec 2006 18:50:02 +0000 Subject: [PATCH] Added "display packages" as the default action svn: r5083 --- collects/planet/planet.ss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/collects/planet/planet.ss b/collects/planet/planet.ss index 5d88d3844c..3a14067711 100644 --- a/collects/planet/planet.ss +++ b/collects/planet/planet.ss @@ -106,7 +106,10 @@ PLANNED FEATURES: "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