diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-12-02 06:40:24 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-12-02 06:40:24 +0000 |
| commit | 795172f7a504475a68702297052619a5c90dbfbf (patch) | |
| tree | 0beef683196d6d2f76165d3756c20ac09c0ee20b /lib/libncurses/lib_move.c | |
| parent | 766ee5695e87f2a4f5c3d4fb858e68e3369ac401 (diff) | |
Notes
Diffstat (limited to 'lib/libncurses/lib_move.c')
| -rw-r--r-- | lib/libncurses/lib_move.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libncurses/lib_move.c b/lib/libncurses/lib_move.c index e7a28ebb8e4f..cf56fa07df3f 100644 --- a/lib/libncurses/lib_move.c +++ b/lib/libncurses/lib_move.c @@ -15,10 +15,7 @@ int wmove(WINDOW *win, int y, int x) { -#ifdef TRACE - if (_tracing) - _tracef("wmove(%x,%d,%d) called", win, y, x); -#endif + T(("wmove(%x,%d,%d) called", win, y, x)); if (x >= 0 && x <= win->_maxx && y >= 0 && y <= win->_maxy) |
