aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy1991-12-04 22:51:54 +0000
committerJim Blandy1991-12-04 22:51:54 +0000
commit4bcffd8e3c5a5ec734e15cf5620fe16ff188cce1 (patch)
tree3259bb26a96dc0eda9f438f996fc9bd488d62157 /lib-src
parent05a9b0abe7f57f2659afd23a6b547894c2f4ce6b (diff)
downloademacs-4bcffd8e3c5a5ec734e15cf5620fe16ff188cce1.tar.gz
emacs-4bcffd8e3c5a5ec734e15cf5620fe16ff188cce1.zip
entered into RCS
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/yow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib-src/yow.c b/lib-src/yow.c
index bfff0e7d3ea..d01429d829d 100644
--- a/lib-src/yow.c
+++ b/lib-src/yow.c
@@ -9,7 +9,7 @@
9 9
10#include <stdio.h> 10#include <stdio.h>
11#include <ctype.h> 11#include <ctype.h>
12#include "../src/paths.h" /* For PATH_EXEC. */ 12#include "../src/paths.h" /* For PATH_DATA. */
13 13
14#define BUFSIZE 80 14#define BUFSIZE 80
15#define SEP '\0' 15#define SEP '\0'
@@ -30,9 +30,9 @@ main (argc, argv)
30 strcpy (file, argv[2]); 30 strcpy (file, argv[2]);
31 else 31 else
32#ifdef vms 32#ifdef vms
33 sprintf (file, "%s%s", PATH_EXEC, YOW_FILE); 33 sprintf (file, "%s%s", PATH_DATA, YOW_FILE);
34#else 34#else
35 sprintf (file, "%s/%s", PATH_EXEC, YOW_FILE); 35 sprintf (file, "%s/%s", PATH_DATA, YOW_FILE);
36#endif 36#endif
37 37
38 if ((fp = fopen(file, "r")) == NULL) { 38 if ((fp = fopen(file, "r")) == NULL) {