diff options
author | 2009-01-08 15:54:26 -0500 | |
---|---|---|
committer | 2009-01-08 15:54:26 -0500 | |
commit | 0194a626fcb17bcb037341fc6c2f586f54d26035 (patch) | |
tree | 9b54a08a6f30ce597b751190c113b934a3bb2b6d /modules/textadept/mlines.lua | |
parent | 1267b118ffebf604639ca7a56660a1b4b69a2b85 (diff) | |
download | textadept-0194a626fcb17bcb037341fc6c2f586f54d26035.tar.gz textadept-0194a626fcb17bcb037341fc6c2f586f54d26035.zip |
Reformatted all C and Lua code to a single standard for each language.
Diffstat (limited to 'modules/textadept/mlines.lua')
-rw-r--r-- | modules/textadept/mlines.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/mlines.lua b/modules/textadept/mlines.lua index c0963b8d..ce1997ce 100644 --- a/modules/textadept/mlines.lua +++ b/modules/textadept/mlines.lua @@ -105,10 +105,10 @@ end function update() local buffer = buffer local curr_line = buffer:line_from_position(buffer.current_pos) - local curr_col = buffer.column[buffer.current_pos] + local curr_col = buffer.column[buffer.current_pos] buffer:begin_undo_action() if mlines[curr_line] then - local s = buffer:find_column( curr_line, mlines[curr_line].start_col ) + local s = buffer:find_column(curr_line, mlines[curr_line].start_col) local e = buffer:find_column(curr_line, curr_col) local delta = e - s local txt = '' |