aboutsummaryrefslogtreecommitdiff
path: root/src/textadept.c
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-06-28 10:10:41 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-06-28 10:10:41 -0400
commiteef00d04d7f04d352b0df8055de4058a15b653f1 (patch)
tree0a32ca64b568efc4bbc12bf6512c3d2d5597f406 /src/textadept.c
parent19549f6e25b51bb6e3b3850804ace591a6d29809 (diff)
downloadtextadept-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.c2
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