Skip to content

Commit

Permalink
Fix bug concatenating strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobly0 committed Aug 11, 2021
1 parent 2fb5a5b commit 015196c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ld.alm
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,8 @@ macro ?! $ : $ , \
compute dirname, dirname
compute filename, filename
compute path, string dirname \
or '/' shl (lengthof filename shl 3) \
or filename shl (lengthof filename shl 3 + 8)
or '/' shl (lengthof dirname shl 3) \
or filename shl ((lengthof dirname + 1) shl 3)
store:
compute fileno, fileno
arrange var, lines.fileno.=path
Expand Down

0 comments on commit 015196c

Please sign in to comment.