diff options
-rw-r--r-- | global.c | 1 | ||||
-rw-r--r-- | global.h | 1 | ||||
-rw-r--r-- | lexxer.l | 1 | ||||
-rw-r--r-- | parser.y | 10 |
4 files changed, 0 insertions, 13 deletions
@@ -43,7 +43,6 @@ u_int SubsystemBase = 0; const_string_t MsgOption = strNULL; const_string_t WaitTime = strNULL; -const_string_t ErrorProc = "MsgError"; const_string_t ServerPrefix = ""; const_string_t UserPrefix = ""; const_string_t ServerDemux = strNULL; @@ -47,7 +47,6 @@ extern u_int SubsystemBase; extern const_string_t MsgOption; extern const_string_t WaitTime; -extern const_string_t ErrorProc; extern const_string_t ServerPrefix; extern const_string_t UserPrefix; extern const_string_t ServerDemux; @@ -130,7 +130,6 @@ static void doSharp(const char *body); /* process body of # directives */ <Normal>(?i:sreplyport) RETURN(sySReplyPort); <Normal>(?i:array) RETURN(syArray); <Normal>(?i:of) RETURN(syOf); -<Normal>(?i:error) RETURN(syErrorProc); <Normal>(?i:serverprefix) RETURN(syServerPrefix); <Normal>(?i:userprefix) RETURN(syUserPrefix); <Normal>(?i:serverdemux) RETURN(syServerDemux); @@ -36,7 +36,6 @@ %token syMsgSeqno %token syWaitTime %token syNoWaitTime -%token syErrorProc %token syServerPrefix %token syUserPrefix %token syServerDemux @@ -176,7 +175,6 @@ Statements : /* empty */ Statement : Subsystem sySemi | WaitTime sySemi | MsgOption sySemi - | Error sySemi | ServerPrefix sySemi | UserPrefix sySemi | ServerDemux sySemi @@ -287,14 +285,6 @@ WaitTime : LookString syWaitTime syString } ; -Error : syErrorProc syIdentifier -{ - ErrorProc = $2; - if (BeVerbose) - printf("ErrorProc %s\n\n", ErrorProc); -} - ; - ServerPrefix : syServerPrefix syIdentifier { ServerPrefix = $2; |