From 5a2c422ccff9c0a0f3777d31c4af38b6c0256fdc Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 13 Mar 1997 09:59:32 +0000 Subject: Added -U option. svn path=/trunk/; revision=931 --- rcfile_y.y | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index 658c9c57..20aea55d 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -48,7 +48,7 @@ static void user_reset(); %token PROTO %token STRING %token NUMBER -%token NO KEEP FLUSH FETCHALL REWRITE STRIPCR DNS PORT +%token NO KEEP FLUSH FETCHALL REWRITE STRIPCR DNS PORT UIDL %% @@ -198,12 +198,14 @@ user_option : TO localnames HERE | FETCHALL {current.fetchall = FLAG_TRUE;} | REWRITE {current.rewrite = FLAG_TRUE;} | STRIPCR {current.stripcr = FLAG_TRUE;} + | UIDL {current.uidl = FLAG_TRUE;} | NO KEEP {current.keep = FLAG_FALSE;} | NO FLUSH {current.flush = FLAG_FALSE;} | NO FETCHALL {current.fetchall = FLAG_FALSE;} | NO REWRITE {current.rewrite = FLAG_FALSE;} | NO STRIPCR {current.stripcr = FLAG_FALSE;} + | NO UIDL {current.uidl = FLAG_FALSE;} | LIMIT NUMBER {current.limit = $2;} | FETCHLIMIT NUMBER {current.fetchlimit = $2;} -- cgit v1.2.3