forked from pool/racket
41057b97e2
- Update to 8.2: * Racket CS improved the performance of large-integer arithmetic. * Racket has improved support for layered and tethered installation. * Racket CS supports nonatomic allocation via ffi/unsafe. * Cross-compilation works fully with the raco cross tool, which is distributed separately as the “raco-cross” package. * DrRacket has performance improvements when editing files with picts containing large bitmaps. * Typed Racket more consistently refines field types of non-polymorphic structs. * Printing of values is unified across the teaching language implementations and the stepper. - Rebase racket-doc.patch OBS-URL: https://build.opensuse.org/request/show/924663 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=51
17 lines
680 B
Diff
17 lines
680 B
Diff
---
|
|
share/pkgs/scribble-lib/help/search.rkt | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- share/pkgs/scribble-lib/help/search.rkt
|
|
+++ share/pkgs/scribble-lib/help/search.rkt
|
|
@@ -47,7 +47,8 @@
|
|
;; Doesn't exist, but notify and then fall back below:
|
|
(build-path (find-doc-dir) sub)))
|
|
(notify path)
|
|
- (if (file-exists? path)
|
|
+ (if (and (file-exists? path)
|
|
+ (file-exists? (build-path (find-doc-dir) "docindex.sqlite")))
|
|
(send-url/file path #:fragment fragment #:query query)
|
|
(let ([part (lambda (pfx x) (if x (string-append pfx x) ""))])
|
|
(send-url (string-append
|