diff options
author | 2008-11-02 21:45:12 -0500 | |
---|---|---|
committer | 2008-11-02 21:45:12 -0500 | |
commit | 0ebcbf679cd1c31ebae6af640869df98675add4f (patch) | |
tree | 20b0a7d18bc571ee00876c91623b783e66d6d4ba /src/lua_interface.c | |
parent | 35e35e5e6b77e895a78eef96982eea808e202aba (diff) | |
download | textadept-0ebcbf679cd1c31ebae6af640869df98675add4f.tar.gz textadept-0ebcbf679cd1c31ebae6af640869df98675add4f.zip |
Fixed typo in src/lua_interface.c for compiling on Mac.
Diffstat (limited to 'src/lua_interface.c')
-rw-r--r-- | src/lua_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua_interface.c b/src/lua_interface.c index beac8b40..8977cbd8 100644 --- a/src/lua_interface.c +++ b/src/lua_interface.c @@ -1254,7 +1254,7 @@ LF l_cf_buffer_text_range(LS *lua) { #ifndef MAC TextRange tr; #else - Scintilla::Textrange tr; + Scintilla::TextRange tr; #endif tr.chrg.cpMin = luaL_checkinteger(lua, 2); tr.chrg.cpMax = luaL_checkinteger(lua, 3); |