Skip to content

Commit 6f8324f

Browse files
committed
FIX: Avoid making a new bitset! on each suffix? call
related to: Oldes/Rebol-issues#2136
1 parent 2d1a66b commit 6f8324f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mezz/base-files.reb

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ suffix?: func [
4545
/local end
4646
][
4747
either all [
48-
url? path end: find path make bitset! "?#"
48+
url? path end: find path #[bitset! #{0000000010000001}] ; "?#"
4949
][
5050
all [
5151
path: find/reverse end #"."

0 commit comments

Comments
 (0)