diff --git a/src/gmnlm.c b/src/gmnlm.c

index d22f64ce27dfcf61eed80ed09b2d072efb8d71e0..6ad61939f8dcd6f6cf530f5615e442fcfb92ffde 100644

--- a/src/gmnlm.c

+++ b/src/gmnlm.c

@@ -71,13 +71,13 @@

const char *help_msg =

"The following commands are available:\n\n"

"q\tQuit\n"

- "N\tFollow Nth link (where N is a number)\n"

- "p[N]\tShow URL of Nth link (where N is a number)\n"

+ "[N]\tFollow Nth link (where N is a number)\n"

+ "u[N]\tShow URL of Nth link (where N is a number)\n"

"b\tBack (in the page history)\n"

"f\tForward (in the page history)\n"

"H\tView all page history\n"

- "m\tSave bookmark\n"

- "M\tBrowse bookmarks\n"

+ "a\tSave bookmark\n"

+ "B\tBrowse bookmarks\n"

"r\tReload the page\n"

"d <path>\tDownload page to <path>\n"

"|<prog>\tPipe page into program\n"

@@ -549,12 +549,12 @@ cur = cur->next;

}

result = PROMPT_AGAIN;

goto exit;

- case 'm':

+ case 'a':

if (in[1]) break;

save_bookmark(browser);

result = PROMPT_AGAIN;

goto exit;

- case 'M':

+ case 'B':

if (in[1]) break;

open_bookmarks(browser);

result = PROMPT_ANSWERED;

@@ -582,7 +582,7 @@ fprintf(stderr, "Cannot move to next result; we are not searching for anything\n");

result = PROMPT_AGAIN;

goto exit;

}

- case 'p':

+ case 'u':

if (!in[1]) break;

struct link *link = browser->links;

char *endptr;