aboutsummaryrefslogtreecommitdiff
path: root/src/lib/flag.go
AgeCommit message (Expand)Author
2009-05-05directory-per-package step 1: move files from lib/X.go to lib/X/X.goRob Pike
2009-04-26flags.Usage() calls fmt.Fprintf() with incorrect argsBrendan O'Dea
2009-04-15tweak flag commentRuss Cox
2009-04-13lib miscRuss Cox
2009-03-04flag: documentRob Pike
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox
2009-02-16use proper strconv in string values.Rob Pike
2009-02-16make interface to the flags themselves more public.Rob Pike
2009-02-13convert composite literals from { } to ( ).Russ Cox
2009-02-04clean up flags package a bit.Rob Pike
2009-01-20delete exportRuss Cox
2009-01-16casify, cleanup sysRuss Cox
2009-01-16casify flag.Rob Pike
2009-01-15more casifying fixupsRob Pike
2009-01-15printf->Printf etc.Rob Pike
2009-01-09simplify flag interface. no more BVal etc. you just get a pointer.Rob Pike
2009-01-06new new & makeRuss Cox
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
2008-11-18stop flag reading before lone - arg.Russ Cox
2008-10-29update Fmt interface: d=int, ud=uint, d32=int32, d64=int64, etc.Russ Cox
2008-10-29adapt to new compiler typesRuss Cox
2008-10-24- set initial value in flag variable if providedRobert Griesemer
2008-10-23use &T{1,2,3} constructor for simple new casesRuss Cox
2008-10-07remove uses of *T as an implicit forward declaration of TRuss Cox
2008-10-07update code to follow new semicolon rules:Russ Cox
2008-09-19more nuanced handling of usage message to allow user control.Rob Pike
2008-09-11fixes for funcs without returnsRob Pike
2008-08-11- changed go-in-go parser to require ()'s for panic and printRobert Griesemer
2008-08-04- switched most of existing Go code to new export syntaxRobert Griesemer
2008-07-24add usage messageRob Pike
2008-07-23Add a flags package.Rob Pike