Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 6d6eae6

Browse files
committed
lc-compile: Tabs should count towards column count in messages
When encountering a horizontal tab in a line of LCB source code, lc-compile wasn't incrementing the column count. This meant that the column position of warning and error reports was reported incorrectly.
1 parent 716c795 commit 6d6eae6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

toolchain/lc-compile/src/LAYOUT.b

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
\ { AdvanceCurrentPosition(1); }
2-
\t { }
2+
\t { AdvanceCurrentPosition(1); }

0 commit comments

Comments
 (0)