diff options
author | Tom Tromey <tromey@cygnus.com> | 1998-02-21 00:35:55 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-02-21 00:35:55 +0000 |
commit | 672bf57122ac6e5f3e3709a22b0ec74b080c0d84 (patch) | |
tree | d9b10e4adc82cc8cc29c5ace4404bd9ca03cbba8 /src/man2html | |
parent | 4db28542140cfc0e8d2b737dbc85e70d533466e1 (diff) | |
download | yelp-672bf57122ac6e5f3e3709a22b0ec74b080c0d84.tar.gz |
Use tab in rule, not space.
Sat Feb 14 01:31:21 1998 Tom Tromey <tromey@cygnus.com>
* Makefile.am (macros/macros.dep): Use tab in rule, not space.
Diffstat (limited to 'src/man2html')
-rw-r--r-- | src/man2html/yelp-man2html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/man2html/yelp-man2html.c b/src/man2html/yelp-man2html.c index e843a527..4eb7034b 100644 --- a/src/man2html/yelp-man2html.c +++ b/src/man2html/yelp-man2html.c @@ -179,6 +179,7 @@ static char *manpath[MAX_MAN_PATHS + 1] = { * setting. */ "/usr/X11/man/", + "/usr/X11R6/man/" "/usr/man/", "/usr/local/man/", "/usr/exp/man/", @@ -3896,7 +3897,7 @@ void main(int argc, char **argv) if (*t == '/') { for (i = 1; manpath[i]; i++) { - if (strncmp(manpath[i], t, strlen(manpath[i])) == 0) { + if (strncmp(manpath[i], t, strlen (manpath [i])) == 0) { break; } } |