From 44a801ac9d018484e1092106dbcd76bea2ead3b5 Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Mon, 17 Mar 2008 23:58:13 -0500 Subject: use 'color pair' rather than 'color_pair' in error message --- src/curses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/curses.c b/src/curses.c index cabf77b..9fcfa09 100644 --- a/src/curses.c +++ b/src/curses.c @@ -102,7 +102,7 @@ static int get_char_color(lua_State* L, int stack_pos) lua_pop(L, 1); val = get_color_pair(L, str); if (val == -1) { - return luaL_error(L, "Unknown color_pair %s", str); + return luaL_error(L, "Unknown color pair %s", str); } return COLOR_PAIR(val); -- cgit v1.2.3-54-g00ecf