Make ./awesome -a work
Some time ago I added a --no-argb option with the short-hand version -a. However, the short version didn't actually work. Whoops! Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
659d949052
commit
4ee86fc5e4
|
@ -365,7 +365,7 @@ main(int argc, char **argv)
|
||||||
luaA_init(&xdg);
|
luaA_init(&xdg);
|
||||||
|
|
||||||
/* check args */
|
/* check args */
|
||||||
while((opt = getopt_long(argc, argv, "vhkc:",
|
while((opt = getopt_long(argc, argv, "vhkc:a",
|
||||||
long_options, NULL)) != -1)
|
long_options, NULL)) != -1)
|
||||||
switch(opt)
|
switch(opt)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue