summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_slk.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-12-02 06:40:24 +0000
committerache <ache@FreeBSD.org>1994-12-02 06:40:24 +0000
commitda3bc85e1374c51c5dced6baacf60288a5a3ea40 (patch)
tree0beef683196d6d2f76165d3756c20ac09c0ee20b /lib/libncurses/lib_slk.c
parentd856190a55e1ac4bbc1e389083c70c3a9c37746e (diff)
downloadFreeBSD-src-da3bc85e1374c51c5dced6baacf60288a5a3ea40.zip
FreeBSD-src-da3bc85e1374c51c5dced6baacf60288a5a3ea40.tar.gz
Upgrade to version 1.8.6
Diffstat (limited to 'lib/libncurses/lib_slk.c')
-rw-r--r--lib/libncurses/lib_slk.c53
1 files changed, 16 insertions, 37 deletions
diff --git a/lib/libncurses/lib_slk.c b/lib/libncurses/lib_slk.c
index f220a37..850556f 100644
--- a/lib/libncurses/lib_slk.c
+++ b/lib/libncurses/lib_slk.c
@@ -8,7 +8,7 @@
* code under the terms of the GNU Copyleft.
*/
-#include <nterm.h>
+#include "terminfo.h"
#include "curses.priv.h"
#include <string.h>
#include <stdlib.h>
@@ -26,10 +26,8 @@ char *
slk_label(int n)
{
SLK *slk = SP->_slk;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_label(%d)", n);
-#endif
+
+ T(("slk_label(%d)", n));
if (slk == NULL || n < 1 || n > 8)
return NULL;
@@ -44,10 +42,7 @@ static void
slk_intern_refresh(SLK *slk)
{
int i;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_intern_refresh(%x)", slk);
-#endif
+ T(("slk_intern_refresh(%x)", slk));
for (i = 0; i < 8; i++) {
if (slk->dirty || slk->ent[i].dirty) {
@@ -71,10 +66,8 @@ int
slk_noutrefresh(void)
{
SLK *slk = SP->_slk;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_noutrefresh()");
-#endif
+
+ T(("slk_noutrefresh()"));
if (slk == NULL)
return ERR;
@@ -92,10 +85,8 @@ int
slk_refresh(void)
{
SLK *slk = SP->_slk;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_refresh()");
-#endif
+
+ T(("slk_refresh()"));
if (slk == NULL)
return ERR;
@@ -113,10 +104,8 @@ int
slk_restore(void)
{
SLK *slk = SP->_slk;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_restore()");
-#endif
+
+ T(("slk_restore()"));
if (slk == NULL)
return ERR;
@@ -134,10 +123,7 @@ slk_set(int i, char *str, int format)
{
SLK *slk = SP->_slk;
int len;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_set(%d, %s, %d)", i, str, format);
-#endif
+ T(("slk_set(%d, \"%s\", %d)", i, str, format));
if (slk == NULL || i < 1 || i > 8 || format < 0 || format > 2)
return ERR;
@@ -172,10 +158,7 @@ int
slk_touch(void)
{
SLK *slk = SP->_slk;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_touch()");
-#endif
+ T(("slk_touch()"));
if (slk == NULL)
return ERR;
@@ -191,10 +174,8 @@ int
slk_clear(void)
{
SLK *slk = SP->_slk;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_clear()");
-#endif
+
+ T(("slk_clear()"));
if (slk == NULL)
return ERR;
@@ -213,10 +194,8 @@ slk_initialize(WINDOW *stwin, int cols)
{
SLK *slk;
int i, maxlab, x;
-#ifdef TRACE
- if (_tracing)
- _tracef("slk_initialize()");
-#endif
+
+ T(("slk_initialize()"));
if ((SP->_slk = slk = (SLK*) calloc(1,sizeof(SLK))) == NULL)
return OK;
OpenPOWER on IntegriCloud