File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -58,8 +58,6 @@ REBOL [
58
58
]
59
59
]
60
60
61
- system/options/binary-base: 64 ; output data in base-64
62
-
63
61
error : func [ msg] [
64
62
if block? msg [msg: reform msg]
65
63
sys/log/error 'prebol msg
@@ -72,8 +70,10 @@ process-source: func [
72
70
blk [any-block! ] "Block of source to process"
73
71
size [integer! ] "Starting size"
74
72
/only "Don't use recursive processing"
75
- /local file data expr cmd else tmp path include-cmds header do-expr
73
+ /local file data expr cmd else tmp path include-cmds header do-expr base
76
74
] [
75
+ base: system/options/binary-base
76
+ system/options/binary-base: 64 ; output data in base-64
77
77
do-expr : func [ expr /local result] [
78
78
; Evaluate expression and make sure it returns a result.
79
79
set /any 'result try [do :expr ]
@@ -209,5 +209,6 @@ comment (rejoin [{---- end of include } mold file { ----}])
209
209
if block? :item [size: process-source item size]
210
210
]
211
211
]
212
+ system/options/binary-base: base ; restore the original base
212
213
size
213
214
]
You can’t perform that action at this time.
0 commit comments