summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2014-04-12 22:15:46 +0300
committerJari Vetoniemi <mailroxas@gmail.com>2014-04-12 22:15:46 +0300
commit27b71db67a02b1fbdfb9394d03a322e50d0e995f (patch)
treead13d0b88374863c67763a18a50bcc25ed1e6b86 /client
parent06972a357983a4686dc37a2aa5a8b0bfd2dd4e7e (diff)
downloadbemenu-27b71db67a02b1fbdfb9394d03a322e50d0e995f.tar.gz
bemenu-27b71db67a02b1fbdfb9394d03a322e50d0e995f.tar.bz2
bemenu-27b71db67a02b1fbdfb9394d03a322e50d0e995f.zip
Add TODO about options.
Diffstat (limited to 'client')
-rw-r--r--client/client.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/client.c b/client/client.c
index fb94ea5..13d9073 100644
--- a/client/client.c
+++ b/client/client.c
@@ -86,6 +86,10 @@ static void parseArgs(int *argc, char **argv[])
{ 0, 0, 0, 0 }
};
+ /* TODO: getopt does not support -sf, -sb etc..
+ * Either break the interface and make them --sf, --sb (like they are now),
+ * or parse them before running getopt.. */
+
for (;;) {
int opt = getopt_long(*argc, *argv, "hviw:I:p:Ibf:m", opts, NULL);
if (opt < 0)