diff options
Diffstat (limited to 'src/LYKeymap.c')
-rw-r--r-- | src/LYKeymap.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/LYKeymap.c b/src/LYKeymap.c index f6ba51ca..e5614d8a 100644 --- a/src/LYKeymap.c +++ b/src/LYKeymap.c @@ -709,9 +709,11 @@ PRIVATE int LYLoadKeymap ARGS4 ( sprintf(buf, "<head>\n<title>%s</title>\n</head>\n<body>\n", CURRENT_KEYMAP_TITLE); (*target->isa->put_block)(target, buf, strlen(buf)); - - sprintf(buf, "<h1>%s (%s Version %s)</h1>\n<pre>", - CURRENT_KEYMAP_TITLE, LYNX_NAME, LYNX_VERSION); + sprintf(buf, "<h1>%s (%s), help on <a href=\"%s%s\">%s</a></h1>\n", + LYNX_NAME, LYNX_VERSION, + helpfilepath, CURRENT_KEYMAP_HELP, CURRENT_KEYMAP_TITLE); + (*target->isa->put_block)(target, buf, strlen(buf)); + sprintf(buf, "<pre>\n"); (*target->isa->put_block)(target, buf, strlen(buf)); for (i = 'a'+1; i <= 'z'+1; i++) { |