summary refs log tree commit diff
path: root/parse.y
Commit message (Collapse)AuthorAgeFilesLines
* allow an autogroup value of 0 to mean no group. This means you can setoga2008-05-191-1/+1
| | | | | | | | | automatically "sticky" (in the traditional sense of the word) windows in autogroup mode. Based on an initial diff from Andrew Fresh, thanks! ok okan@.
* Kill conf_get_int(), it was a silly function anyway.oga2008-05-181-1/+0
| | | | | | | | Since it's only used once just put the (simplified) logic into conf_client() instead. This means we can kill an enum and CONF_IGNORECASE, too. ok okan@
* When we're cleaning out the lists in parse_config and conf_clear it's aoga2008-05-181-36/+16
| | | | | | | lot simpler just to do while (entry = TAILQ_FIRST(head)) than to do a for () over the whole lot. Simpler, shorter and probably faster. ok okan@
* Allow slashes in unquoted strings.simon2008-04-291-3/+2
| | | | | From Pierre Riteau Makes sense to oga@
* Replace a few leftover calls to strdup and calloc with xstrdup and xcallocoga2008-04-161-10/+5
| | | | | | respectively. ok okan.
* hit it with the knf stick.oga2008-04-151-20/+27
|
* Add "gap" support to .cwmrc. The options put in here make gaps on the edgeoga2008-04-151-2/+10
| | | | | | | | | of the screen where an application won't be {,vert}maximized over. used for placing a statusbar or something like xclock. Patch from Edd Barrett, with input from myself and okan. Thanks! ok okan@.
* malloc -> callocokan2008-04-151-2/+1
| | | | suggested by and ok oga@
* Replace the symlink configuration scheme with a simple yacc parser assimon2008-03-231-0/+583
found in other places of the tree. Remove sticky and font commandline options and add another one for alternative config locations. Split off cwmrc(5) from cwm(1), nuke #ifdef __OpenBSD__ while there. tested by various kind people, feedback from oga@ and okan@ - thanks! ok oga@, jasper@, okan@