Skip to content

Commit fdfb3c8

Browse files
committed
fix(bable): remove debugging output
1 parent 3d38576 commit fdfb3c8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Diff for: lua/orgmode/babel/tangle.lua

-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ function ls_style_to_octal(rwx_string)
2727
if chunk:sub(3, 3) == 'x' then value = value + 1 end
2828

2929
result = result * 8 + value
30-
utils.echo_info(("ls style mode: %o"):format(result))
3130
end
3231

3332
return result
@@ -38,9 +37,7 @@ function chmod_style_to_octal(chmod_string)
3837
local owner, group, other = 0, 0, 0
3938

4039
for part in chmod_string:gmatch('[^,]+') do
41-
utils.echo_info(('part: %s'):format(part))
4240
local who, what = part:match('(%a+)[=+](.+)')
43-
utils.echo_info(('who: %s what: %s'):format(who, what))
4441
if not who or not what then
4542
return nil
4643
end

0 commit comments

Comments
 (0)