aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2007-11-30 23:29:53 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2007-11-30 23:29:53 -0500
commit48e03a9ed6d4081da6fe292d69bbc7908f74fda2 (patch)
tree19d5193c950168fa749113ec1fa8ecf52500d44e
parent197536863d516dedca8defe61c3c06d6d7e1ef62 (diff)
downloadtextadept-48e03a9ed6d4081da6fe292d69bbc7908f74fda2.tar.gz
textadept-48e03a9ed6d4081da6fe292d69bbc7908f74fda2.zip
Warn that pm_view content item ID is a string type; src/lua_interface.c
-rw-r--r--src/lua_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua_interface.c b/src/lua_interface.c
index ba6de56d..133a6967 100644
--- a/src/lua_interface.c
+++ b/src/lua_interface.c
@@ -515,7 +515,7 @@ void l_pm_populate(GtkTreeIter *initial_iter) {
gtk_tree_store_set(pm_store, &iter, 2, lua_isstring(lua, -1) ?
lua_tostring(lua, -1) : lua_tostring(lua, -3));
lua_pop(lua, 1); // display text
- } else warn("pm.populate: id key must have table value.");
+ } else warn("pm.populate: string id key must have table value.");
lua_pop(lua, 1); // value
} lua_pop(lua, 1); // returned table
}