blob: 594673af2bdceb998336f346bc51b79b3b032fc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- rc.c.orig Fri Jun 9 04:55:18 2000
+++ rc.c Fri Jun 9 04:55:26 2000
@@ -990,16 +990,3 @@
Strcat_charp(file, base);
return expandName(file->ptr);
}
-
-char *
-helpFile(char *base)
-{
-#ifdef __EMX__
- Str file = Strnew_charp(get_os2_dft("W3M_HELP_DIR", HELP_DIR));
-#else /* not __EMX__ */
- Str file = Strnew_charp(HELP_DIR);
-#endif /* not __EMX__ */
- Strcat_char(file, '/');
- Strcat_charp(file, base);
- return expandName(file->ptr);
-}
|