Fri Sep 20 02:28:15 1991 John Gilmore (gnu at cygnus.com)
+ * language.c (_initialize_language): Fix type check and range
+ check documentation strings.
* utils.c (!HAVE_VPRINTF): Define vfprintf as a function, so
language.c can use it. (Though language.c should really not be
handling warnings/errors the way it does, FIXME.)
add_prefix_cmd ("check", no_class, show_check,
"Show the status of the type/range checker",
- &showchecklist, "set check ", 0, &showlist);
+ &showchecklist, "show check ", 0, &showlist);
add_alias_cmd ("c", "check", no_class, 1, &showlist);
add_alias_cmd ("ch", "check", no_class, 1, &showlist);
set = add_set_cmd ("type", class_support, var_string_noescape,
(char *)&type,
- "Set type checking on/warn/off/auto.",
+ "Set type checking. (on/warn/off/auto)",
&setchecklist);
show = add_show_from_set (set, &showchecklist);
set->function = set_type_command;
set = add_set_cmd ("range", class_support, var_string_noescape,
(char *)&range,
- "Set range checking on/warn/off/auto.",
+ "Set range checking. (on/warn/off/auto)",
&setchecklist);
show = add_show_from_set (set, &showchecklist);
set->function = set_range_command;