* help.c (help_follow_link): Made static.

This commit is contained in:
Pavel Roskin 2002-08-19 05:00:58 +00:00
parent 9ff6874d9e
commit e29d69423a
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-08-19 Pavel Roskin <proski@gnu.org>
* help.c (help_follow_link): Made static.
2002-08-18 Pavel Roskin <proski@gnu.org>
* subshell.c (synchronize): Discard all remaining data from

View File

@ -251,7 +251,7 @@ static void move_to_bottom (int dummy)
move_backward (help_lines - 1);
}
char *help_follow_link (char *start, char *selected_item)
static char *help_follow_link (char *start, char *selected_item)
{
char link_name [MAXLINKNAME];
char *p;

View File

@ -28,5 +28,4 @@
#define STRING_NODE_END "\04"
void interactive_display (char *filename, char *node);
char *help_follow_link (char *start, char *selected_item);
#endif /* __HELP_H */