1
0
forked from aniani/vim

updated for version 7.2-115

This commit is contained in:
Bram Moolenaar
2009-02-21 21:30:39 +00:00
parent ec90622aae
commit 926e815779
3 changed files with 2 additions and 53 deletions

View File

@@ -33,7 +33,6 @@ FILE *nb_debug = NULL;
u_int nb_dlevel = 0; /* nb_debug verbosity level */
void nbdb(char *, ...);
void nbtrace(char *, ...);
static int lookup(char *);
#ifdef USE_NB_ERRORHANDLER
@@ -100,25 +99,6 @@ nbdebug_log_init(
} /* end nbdebug_log_init */
void
nbtrace(
char *fmt,
...)
{
va_list ap;
if (nb_debug!= NULL && (nb_dlevel & (NB_TRACE | NB_TRACE_VERBOSE))) {
va_start(ap, fmt);
vfprintf(nb_debug, fmt, ap);
va_end(ap);
fflush(nb_debug);
}
} /* end nbtrace */
void
nbdbg(
char *fmt,
@@ -136,23 +116,6 @@ nbdbg(
} /* end nbdbg */
void
nbprt(
char *fmt,
...)
{
va_list ap;
if (nb_debug != NULL && nb_dlevel & NB_PRINT) {
va_start(ap, fmt);
vfprintf(nb_debug, fmt, ap);
va_end(ap);
fflush(nb_debug);
}
} /* end nbprt */
static int
lookup(
char *file)