summaryrefslogtreecommitdiffstats
path: root/contrib/texinfo/info/variables.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/texinfo/info/variables.c')
-rw-r--r--contrib/texinfo/info/variables.c20
1 files changed, 8 insertions, 12 deletions
diff --git a/contrib/texinfo/info/variables.c b/contrib/texinfo/info/variables.c
index 7280325..3636801 100644
--- a/contrib/texinfo/info/variables.c
+++ b/contrib/texinfo/info/variables.c
@@ -1,7 +1,7 @@
/* variables.c -- how to manipulate user visible variables in Info.
- $Id: variables.c,v 1.1 2002/08/25 23:38:38 karl Exp $
+ $Id: variables.c,v 1.3 2004/04/11 17:56:46 karl Exp $
- Copyright (C) 1993, 1997, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1997, 2001, 2002, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -77,7 +77,7 @@ DECLARE_INFO_COMMAND (describe_variable, _("Explain the use of a variable"))
char *description;
/* Get the variable's name. */
- var = read_variable_name (_("Describe variable: "), window);
+ var = read_variable_name ((char *) _("Describe variable: "), window);
if (!var)
return;
@@ -92,7 +92,7 @@ DECLARE_INFO_COMMAND (describe_variable, _("Explain the use of a variable"))
sprintf (description, "%s (%d): %s.",
var->name, *(var->value), _(var->doc));
- window_message_in_echo_area ("%s", description);
+ window_message_in_echo_area ("%s", description, NULL);
free (description);
}
@@ -102,7 +102,7 @@ DECLARE_INFO_COMMAND (set_variable, _("Set the value of an Info variable"))
char *line;
/* Get the variable's name and value. */
- var = read_variable_name (_("Set variable: "), window);
+ var = read_variable_name ((char *) _("Set variable: "), window);
if (!var)
return;
@@ -201,9 +201,7 @@ DECLARE_INFO_COMMAND (set_variable, _("Set the value of an Info variable"))
address of a VARIABLE_ALIST member. A return value of NULL indicates
that no variable could be read. */
VARIABLE_ALIST *
-read_variable_name (prompt, window)
- char *prompt;
- WINDOW *window;
+read_variable_name (char *prompt, WINDOW *window)
{
register int i;
char *line;
@@ -249,7 +247,7 @@ read_variable_name (prompt, window)
/* Make an array of REFERENCE which actually contains the names of the
variables available in Info. */
REFERENCE **
-make_variable_completions_array ()
+make_variable_completions_array (void)
{
register int i;
REFERENCE **array = (REFERENCE **)NULL;
@@ -274,9 +272,7 @@ make_variable_completions_array ()
#if defined(INFOKEY)
void
-set_variable_to_value(name, value)
- char *name;
- char *value;
+set_variable_to_value(char *name, char *value)
{
register int i;
OpenPOWER on IntegriCloud