From 801a4feafd70902c730e3359d5b59626ac5b0409 Mon Sep 17 00:00:00 2001 From: slava Date: Fri, 20 Oct 2006 01:30:12 +0000 Subject: [PATCH] Start 0.86 with a contrib fix --- Makefile | 2 +- contrib/all.factor | 2 +- contrib/furnace/tools/help.factor | 3 +++ library/version.factor | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e27ea94473..a66c57466e 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CC = gcc BINARY = f IMAGE = factor.image BUNDLE = Factor.app -VERSION = 0.85 +VERSION = 0.86 DISK_IMAGE_DIR = Factor-$(VERSION) DISK_IMAGE = Factor-$(VERSION).dmg diff --git a/contrib/all.factor b/contrib/all.factor index d9f1cb2266..bfb1df1386 100644 --- a/contrib/all.factor +++ b/contrib/all.factor @@ -3,7 +3,7 @@ USING: kernel modules words ; REQUIRES: contrib/alien contrib/automata contrib/benchmarks contrib/boids contrib/cairo contrib/calendar contrib/concurrency contrib/coroutines contrib/crypto -contrib/dlists contrib/emacs contrib/embedded contrib/furnace +contrib/dlists contrib/emacs contrib/furnace contrib/furnace-pastebin contrib/gap-buffer contrib/hexdump contrib/http contrib/httpd contrib/http-client contrib/jedit contrib/jni contrib/json contrib/lambda contrib/lazy-lists diff --git a/contrib/furnace/tools/help.factor b/contrib/furnace/tools/help.factor index fe178b5a5d..356c9faa8e 100644 --- a/contrib/furnace/tools/help.factor +++ b/contrib/furnace/tools/help.factor @@ -10,6 +10,9 @@ USING: furnace help html kernel sequences words strings io ; "Search" write ] html-document ; +: string>topic ( string -- topic ) + " " split dup length 1 = [ first ] when ; + \ show-help { { "topic" "handbook" v-default string>topic } } define-action diff --git a/library/version.factor b/library/version.factor index 6efb3ac1ec..8ec0ddbe43 100644 --- a/library/version.factor +++ b/library/version.factor @@ -1,2 +1,2 @@ IN: kernel -: version "0.85" ; +: version "0.86" ;