From 9edf372fb9e281930eaabd090731f9a5c312f7fb Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 8 Oct 1996 07:26:51 +0000 Subject: Add English-like keywords but don't document them yet. svn path=/trunk/; revision=248 --- rcfile_y.y | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index ccde88e8..32c5b244 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -29,7 +29,7 @@ int yydebug; /* in case we didn't generate with -- debug */ char *sval; } -%token SERVER PROTOCOL LOCALNAME USERNAME PASSWORD FOLDER SMTPHOST MDA DEFAULTS +%token SERVER PROTOCOL USERNAME PASSWORD FOLDER SMTPHOST MDA DEFAULTS IS HERE %token PROTO %token STRING %token KEEP FLUSH FETCHALL REWRITE PORT SKIP @@ -84,7 +84,8 @@ user1opts : user_option | user1opts user_option ; -user_option : LOCALNAME STRING {prc_setlocal($2);} +user_option : IS STRING {prc_setlocal($2);} + | IS STRING HERE {prc_setlocal($2);} | PASSWORD STRING {prc_setpassword($2);} | FOLDER STRING {prc_setfolder($2);} | SMTPHOST STRING {prc_setsmtphost($2);} -- cgit v1.2.3