aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/wmenu.1.scd2
-rw-r--r--menu.c2
-rw-r--r--wmenu.c4
3 files changed, 3 insertions, 5 deletions
diff --git a/docs/wmenu.1.scd b/docs/wmenu.1.scd
index f489c84..4519e8b 100644
--- a/docs/wmenu.1.scd
+++ b/docs/wmenu.1.scd
@@ -37,7 +37,7 @@ $PATH and runs the result.
*-P*
wmenu will not directly display the keyboard input, but instead replace it
- with asterisks. All data from stdin will be ignored.
+ with asterisks.
*-v*
prints version information to stdout, then exits.
diff --git a/menu.c b/menu.c
index baa3061..f99bd54 100644
--- a/menu.c
+++ b/menu.c
@@ -85,7 +85,7 @@ static bool parse_color(const char *color, uint32_t *result) {
// Parse menu options from command line arguments.
void menu_getopts(struct menu *menu, int argc, char *argv[]) {
const char *usage =
- "Usage: wmenu [-biPvx] [-f font] [-l lines] [-o output] [-p prompt]\n"
+ "Usage: wmenu [-biPv] [-f font] [-l lines] [-o output] [-p prompt]\n"
"\t[-N color] [-n color] [-M color] [-m color] [-S color] [-s color]\n";
int opt;
diff --git a/wmenu.c b/wmenu.c
index 0a3d0b0..e7d37d9 100644
--- a/wmenu.c
+++ b/wmenu.c
@@ -19,9 +19,7 @@ static void read_items(struct menu *menu) {
int main(int argc, char *argv[]) {
struct menu *menu = menu_create();
menu_getopts(menu, argc, argv);
- if (!menu->passwd) {
- read_items(menu);
- }
+ read_items(menu);
int status = menu_run(menu);
menu_destroy(menu);
return status;