diff options
author | 2020-06-28 10:10:41 -0400 | |
---|---|---|
committer | 2020-06-28 10:10:41 -0400 | |
commit | eef00d04d7f04d352b0df8055de4058a15b653f1 (patch) | |
tree | 0a32ca64b568efc4bbc12bf6512c3d2d5597f406 /src/textadept.c | |
parent | 19549f6e25b51bb6e3b3850804ace591a6d29809 (diff) | |
download | textadept-eef00d04d7f04d352b0df8055de4058a15b653f1.tar.gz textadept-eef00d04d7f04d352b0df8055de4058a15b653f1.zip |
Renamed `ui.bufstatusbar_text` to `ui.buffer_statusbar_text`.
Diffstat (limited to 'src/textadept.c')
-rw-r--r-- | src/textadept.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textadept.c b/src/textadept.c index f03de69f..2afb1b59 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -894,7 +894,7 @@ static int ui_newindex(lua_State *L) { SS(focused_view, SCI_COPYTEXT, lua_rawlen(L, 3), (sptr_t)text); } else if (strcmp(key, "statusbar_text") == 0) set_statusbar_text(lua_tostring(L, 3), 0); - else if (strcmp(key, "bufstatusbar_text") == 0) + else if (strcmp(key, "buffer_statusbar_text") == 0) set_statusbar_text(lua_tostring(L, 3), 1); else if (strcmp(key, "menubar") == 0) { #if GTK |