commit 9f42f77c5f476ea6f1aeccb5eab77bdd0f32ad78
parent 19230340dc9d9795b527eadbf2afea8a6a2c7db5
Author: Paul Steckler <steck@stecksoft.com>
Date: Mon, 12 Aug 2002 17:37:12 +0000
removed empty-search string constant
original commit: c94fffa6b79e813aa0706402cdb8559e45c77856
Diffstat:
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/collects/help/private/search.ss b/collects/help/private/search.ss
@@ -436,14 +436,12 @@
files))))
docs doc-names doc-kinds)
(if (= 0 hit-count)
- (cond
- [(null? string-finds) (string-constant nothing-found-for-empty-search)]
- [else
- (format (string-constant nothing-found-for)
+ (format (string-constant nothing-found-for)
(apply
string-append
(cons (format "\"~a\"" (car string-finds))
(map (lambda (i) (format " ~a \"~a\"" (string-constant and) i))
- (cdr string-finds)))))])
+ (cdr string-finds)))))
#f))))
+