From b8794d8beea9b084917b84e04b064a68bd67352f Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 20 Dec 2005 21:39:13 +0000 Subject: [PATCH] stdio unparser vocabs removed --- contrib/crypto/common.factor | 2 +- contrib/crypto/md5.factor | 2 +- contrib/crypto/sha1.factor | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/crypto/common.factor b/contrib/crypto/common.factor index adc80911f9..1aff636fed 100644 --- a/contrib/crypto/common.factor +++ b/contrib/crypto/common.factor @@ -1,6 +1,6 @@ IN: crypto-internals USING: kernel io strings sequences namespaces math prettyprint -unparser test parser lists ; +test parser lists ; : w+ ( int -- int ) diff --git a/contrib/crypto/md5.factor b/contrib/crypto/md5.factor index 00052541c5..1d9e32e7d8 100644 --- a/contrib/crypto/md5.factor +++ b/contrib/crypto/md5.factor @@ -1,6 +1,6 @@ IN: crypto-internals USING: kernel io strings sequences namespaces math - unparser test parser lists crypto ; + test parser lists crypto ; SYMBOL: a SYMBOL: b diff --git a/contrib/crypto/sha1.factor b/contrib/crypto/sha1.factor index 955b1a53cb..73d84617b4 100644 --- a/contrib/crypto/sha1.factor +++ b/contrib/crypto/sha1.factor @@ -1,6 +1,6 @@ IN: crypto-internals USING: kernel io strings sequences namespaces math prettyprint -unparser test parser lists vectors hashtables kernel-internals crypto ; +test parser lists vectors hashtables kernel-internals crypto ; ! Implemented according to RFC 3174.