dragonmtn-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dragonmtn-commits] Changes to icequeen/src/config-parser.y


From: Tony Vroon
Subject: [Dragonmtn-commits] Changes to icequeen/src/config-parser.y
Date: Sat, 09 Apr 2005 11:35:35 -0400

Index: icequeen/src/config-parser.y
diff -u icequeen/src/config-parser.y:1.1.1.1 icequeen/src/config-parser.y:1.2
--- icequeen/src/config-parser.y:1.1.1.1        Tue Apr  5 21:12:07 2005
+++ icequeen/src/config-parser.y        Sat Apr  9 15:35:34 2005
@@ -47,6 +47,7 @@
 %token IRC
 %token KLINE
 %token KEY
+%token LOCOPSREGEX
 %token MASK
 %token MAX_READ
 %token MODE
@@ -145,21 +146,22 @@
 irc_items: irc_items irc_item |
            irc_item;
 
-irc_item: irc_away      |
-          irc_connregex |
-          irc_kline     |
-          irc_nick      |
-          irc_nickserv  |
-          irc_mode      |
-          irc_oper      |
-          irc_password  |
-          irc_port      | 
-          irc_realname  |
-          irc_server    |
-          irc_username  |
-          irc_vhost     |
-          irc_perform   |
-          channel_entry |
+irc_item: irc_away        |
+          irc_connregex   |
+          irc_kline       |
+          irc_locopsregex |
+          irc_nick        |
+          irc_nickserv    |
+          irc_mode        |
+          irc_oper        |
+          irc_password    |
+          irc_port        | 
+          irc_realname    |
+          irc_server      |
+          irc_username    |
+          irc_vhost       |
+          irc_perform     |
+          channel_entry   |
           error;
 
 irc_away: AWAY '=' STRING ';'
@@ -247,6 +249,11 @@
    IRCItem->connregex = DupString($3);
 };
 
+irc_locopsegex: LOCOPSREGEX '=' STRING ';'
+{
+   MyFree(IRCItem->locopsregex);
+   IRCItem->locopsregex = DupString($3);
+};
 
 /************************** CHANNEL BLOCK *************************/
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]