From 3502a58f573dfd8b3f3fc55cffc5d29b1c1c99d4 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 5 Oct 2000 18:31:18 +0000 Subject: [PATCH] *** empty log message *** --- dtool/src/attach/ctcvs.pl | 4 ++-- panda/src/putil/config_util.N | 3 +++ panda/src/putil/notify_utils.N | 7 ------- panda/src/putil/notify_utils.h | 17 ----------------- 4 files changed, 5 insertions(+), 26 deletions(-) delete mode 100644 panda/src/putil/notify_utils.N delete mode 100644 panda/src/putil/notify_utils.h diff --git a/dtool/src/attach/ctcvs.pl b/dtool/src/attach/ctcvs.pl index 62d5a7d3cd..3c478451a9 100644 --- a/dtool/src/attach/ctcvs.pl +++ b/dtool/src/attach/ctcvs.pl @@ -63,7 +63,7 @@ sub CTCvsLogin { # ok, the server line is in [0] and the password in [1]. &CTUDebug( "server line from .cvspass is '" . $line[0] . "'\n" ) ; if ( $line[0] ne $_[0] ) { - local( $line ) = "cvs -d " . $_[0] . " login" ; + local( $line ) = "cvs -d " . $_[0] . " login >/dev/null" ; &CTUDebug( "about to run '" . $line . "'\n" ) ; $ret = &CTURetCode( system( $line )) ; } else { @@ -72,7 +72,7 @@ sub CTCvsLogin { } } else { &CTUDebug( $path . " file does not exist\n" ) ; - local( $line ) = "cvs -d " . $_[0] . " login" ; + local( $line ) = "cvs -d " . $_[0] . " login >/dev/null" ; &CTUDebug( "about to run '" . $line . "'\n" ) ; $ret = &CTURetCode( system( $line )) ; } diff --git a/panda/src/putil/config_util.N b/panda/src/putil/config_util.N index ed380bc510..165be98b8b 100644 --- a/panda/src/putil/config_util.N +++ b/panda/src/putil/config_util.N @@ -1,4 +1,7 @@ forcetype DSearchPath forcetype Filename +forcetype Notify +forcetype NotifyCategory +forcetype NotifySeverity diff --git a/panda/src/putil/notify_utils.N b/panda/src/putil/notify_utils.N deleted file mode 100644 index 00ce75c11a..0000000000 --- a/panda/src/putil/notify_utils.N +++ /dev/null @@ -1,7 +0,0 @@ -forcetype Notify -forcetype NotifyCategory -forcetype NotifySeverity - -ignoremember set_assert_handler -ignoremember get_assert_handler -ignoremember AssertHandler diff --git a/panda/src/putil/notify_utils.h b/panda/src/putil/notify_utils.h deleted file mode 100644 index f25676beb4..0000000000 --- a/panda/src/putil/notify_utils.h +++ /dev/null @@ -1,17 +0,0 @@ -// Filename: notify_utils.h -// Created by: drose (24May00) -// -//////////////////////////////////////////////////////////////////// - -#ifndef NOTIFY_UTILS_H -#define NOTIFY_UTILS_H - -#include - -#include - -// The main purpose of this file is to provide a hook for -// interrogating Notify. - -#endif -