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 @@ -2036,11 +2036,11 @@ Rebol [
2036
2036
;@@ https://github.com/Oldes/Rebol-issues/issues/1013
2037
2037
--assert #{ 0102 } and #{ 00FF } == #{ 0002 }
2038
2038
--assert #{ 0102 } and #{ 0300 } == #{ 0100 }
2039
- --assert #{ 0102 } and #{ 03 } == #{ 0100 }
2039
+ --assert #{ 0101 } and #{ 03 } == #{ 0101 } ; the shorter arg is now used repeatadly!
2040
2040
--test-- "binary OR binary"
2041
2041
--assert #{ 0102 } or #{ 00FF } == #{ 01FF }
2042
2042
--assert #{ 0102 } or #{ 0300 } == #{ 0302 }
2043
- --assert #{ 0102 } or #{ 03 } == #{ 0302 }
2043
+ --assert #{ 0101 } or #{ 03 } == #{ 0303 } ; the shorter arg is now used repeatadly!
2044
2044
2045
2045
===end-group===
2046
2046
@@ -2336,7 +2336,8 @@ Rebol [
2336
2336
===end-group===
2337
2337
2338
2338
2339
- ===start-group=== "Bitwise operations on binary"
2339
+ ===start-group=== "Bitwise operations on binary"
2340
+ ;@@ https://github.com/Oldes/Rebol-issues/issues/1013
2340
2341
bin1: #{ DEADBEAFF00D }
2341
2342
bin2: #{ BEAF }
2342
2343
--test-- "AND on binary"
You can’t perform that action at this time.
0 commit comments