From: Brendan Hansen Date: Tue, 26 Apr 2022 18:57:33 +0000 (-0500) Subject: removed __ACS_LOOKUP in ncurses X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=574ce8d1ae0e49c03e8523e5da163ee397415902;p=onyx.git removed __ACS_LOOKUP in ncurses --- diff --git a/modules/ncurses/module.onyx b/modules/ncurses/module.onyx index d77c728e..4b1ca1c1 100644 --- a/modules/ncurses/module.onyx +++ b/modules/ncurses/module.onyx @@ -49,8 +49,6 @@ void __get_par_yx(WINDOW *w, int *y, int *x) { getparyx(w, *y, *x); } void __get_beg_yx(WINDOW *w, int *y, int *x) { getbegyx(w, *y, *x); } void __get_max_yx(WINDOW *w, int *y, int *x) { getmaxyx(w, *y, *x); } -chtype __ACS_LOOKUP(int a) { return NCURSES_ACS(a); } - """ cast_map :: (#type struct {type: type_expr; name: str;}).[ .{ WINDOW, "WINDOW *" }, diff --git a/modules/ncurses/ncurses.c b/modules/ncurses/ncurses.c index cb880b1c..8ccc641c 100644 --- a/modules/ncurses/ncurses.c +++ b/modules/ncurses/ncurses.c @@ -10,8 +10,6 @@ void __get_par_yx(WINDOW *w, int *y, int *x) { getparyx(w, *y, *x); } void __get_beg_yx(WINDOW *w, int *y, int *x) { getbegyx(w, *y, *x); } void __get_max_yx(WINDOW *w, int *y, int *x) { getmaxyx(w, *y, *x); } -chtype __ACS_LOOKUP(int a) { return NCURSES_ACS(a); } - #define ONYX_LIBRARY_NAME onyx_ncurses diff --git a/modules/ncurses/onyx_ncurses.so b/modules/ncurses/onyx_ncurses.so index 857b36b6..ca0c57c5 100755 Binary files a/modules/ncurses/onyx_ncurses.so and b/modules/ncurses/onyx_ncurses.so differ