From 9de4592de5efe0d8f9235ab66f2af1d0a2e8f22a Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 29 Dec 2017 00:47:35 -0800 Subject: [PATCH] pcre: fix word scope --- extra/pcre/pcre.factor | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extra/pcre/pcre.factor b/extra/pcre/pcre.factor index 5759c1b3ec..2b6aed4864 100644 --- a/extra/pcre/pcre.factor +++ b/extra/pcre/pcre.factor @@ -1,6 +1,5 @@ ! Copyright (C) 2013, 2016 Björn Lindqvist ! See http://factorcode.org/license.txt for BSD license - USING: accessors alien alien.accessors alien.c-types alien.data alien.enums alien.strings arrays assocs combinators fry io.encodings.string io.encodings.utf8 kernel literals math @@ -14,7 +13,7 @@ ERROR: malformed-regexp expr error ; ERROR: pcre-error value ; : version ( -- f ) - pcre_version " -" splitting:split first string>number ; + pcre_version " -" splitting::split first string>number ;