summaryrefslogtreecommitdiffstats
path: root/g10/status.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-11-27 12:42:49 +0100
committerWerner Koch <wk@gnupg.org>1998-11-27 12:42:49 +0100
commita7d13c0d80dafb2530531defa9ba993a92148f3c (patch)
treeb71a9f392b69fe05ee033b3d12628d49c4149125 /g10/status.c
parent*** empty log message *** (diff)
downloadgnupg2-a7d13c0d80dafb2530531defa9ba993a92148f3c.tar.xz
gnupg2-a7d13c0d80dafb2530531defa9ba993a92148f3c.zip
See ChangeLog: Fri Nov 27 12:39:29 CET 1998 Werner Koch
Diffstat (limited to 'g10/status.c')
-rw-r--r--g10/status.c31
1 files changed, 3 insertions, 28 deletions
diff --git a/g10/status.c b/g10/status.c
index 3fcf22b67..3b9e197b8 100644
--- a/g10/status.c
+++ b/g10/status.c
@@ -235,31 +235,6 @@ do_shm_get( const char *keyword, int hidden, int bool )
#endif /* USE_SHM_COPROCESSING */
-static void
-display_help( const char *keyword )
-{
- const char *p;
- int hint = 0;
-
- tty_kill_prompt();
- if( !keyword ) {
- tty_printf(_("No help available") );
- hint++;
- }
- else {
- p = _(keyword);
- if( !strcmp( p, keyword ) ) {
- tty_printf(_("No help available for '%s'"), keyword );
- hint++;
- }
- else
- tty_printf("%s", p );
- }
- tty_printf("\n");
- if( hint )
- tty_printf("You should set your LANG variable to a valid value.\n"
- "Set LANG to \"en\" to see the English help texts.\n" );
-}
int
@@ -285,7 +260,7 @@ cpr_get( const char *keyword, const char *prompt )
p = tty_get( prompt );
if( *p == '?' && !p[1] ) {
m_free(p);
- display_help( keyword );
+ display_online_help( keyword );
}
else
return p;
@@ -318,7 +293,7 @@ cpr_get_hidden( const char *keyword, const char *prompt )
p = tty_get_hidden( prompt );
if( *p == '?' && !p[1] ) {
m_free(p);
- display_help( keyword );
+ display_online_help( keyword );
}
else
return p;
@@ -350,7 +325,7 @@ cpr_get_answer_is_yes( const char *keyword, const char *prompt )
trim_spaces(p); /* it is okay to do this here */
if( *p == '?' && !p[1] ) {
m_free(p);
- display_help( keyword );
+ display_online_help( keyword );
}
else {
tty_kill_prompt();