Apply patches from bin/24642 by Peter Postma to fix the "no help is

available" message from sushi's help system.
This commit is contained in:
garbled 2004-03-09 19:22:22 +00:00
parent c55eeb45eb
commit 0e2f4ba6c4
2 changed files with 4 additions and 3 deletions

View File

@ -54,6 +54,7 @@ $set 3 run.c stuff
13 The current field is a multiple-selection list field. The field can only
14 be edited by issuing the List(F4) command, and toggling desired options
15 with the spacebar. Press the ENTER key to return from the list popup.
16 No help is available for this screen.
$set 4 menu titles and stuff
1 Select choice
2 Generating form data, please wait

View File

@ -1,4 +1,4 @@
/* $NetBSD: handlers.c,v 1.5 2003/11/12 13:31:08 grant Exp $ */
/* $NetBSD: handlers.c,v 1.6 2004/03/09 19:22:22 garbled Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -267,9 +267,9 @@ handle_endpoint(char *path)
void
nohelp(void)
{
char *mesg[2];
char *mesg[1];
mesg[0] = catgets(catalog, 3, 10,
mesg[0] = catgets(catalog, 3, 16,
"No help is available for this screen.");
popupLabel(cdkscreen, mesg, 1);
}