summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>1998-02-21 00:35:55 +0000
committerArturo Espinosa <unammx@src.gnome.org>1998-02-21 00:35:55 +0000
commit3a9b2a170d78ca9cf594c95eab88fd4ed7e25777 (patch)
tree0714b57e112ccd6416c43f75ecb86de1e3127fe8
parent7f440e9845035341601debea4cd7593c9a8622ce (diff)
downloadnautilus-3a9b2a170d78ca9cf594c95eab88fd4ed7e25777.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.
-rw-r--r--components/help/converters/gnome-man2html2/gnome-man2html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/help/converters/gnome-man2html2/gnome-man2html.c b/components/help/converters/gnome-man2html2/gnome-man2html.c
index e843a5273..4eb7034ba 100644
--- a/components/help/converters/gnome-man2html2/gnome-man2html.c
+++ b/components/help/converters/gnome-man2html2/gnome-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;
}
}