summaryrefslogtreecommitdiff
path: root/tex/context/base/l-number.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/l-number.lua')
-rw-r--r--tex/context/base/l-number.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/l-number.lua b/tex/context/base/l-number.lua
index e26eb729d..001ca31f7 100644
--- a/tex/context/base/l-number.lua
+++ b/tex/context/base/l-number.lua
@@ -17,7 +17,7 @@ local lpegmatch = lpeg.match
number = number or { }
local number = number
-if bit32 then
+if bit32 then -- I wonder if this is faster
local btest, bor = bit32.btest, bit32.bor
@@ -28,7 +28,7 @@ if bit32 then
number.hasbit = btest
number.setbit = bor
- function number.setbit(x,p)
+ function number.setbit(x,p) -- why not bor?
return btest(x,p) and x or x + p
end