diff options
author | Jim Blandy <jimb@redhat.com> | 1991-12-04 22:51:54 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1991-12-04 22:51:54 +0000 |
commit | efc2623e45aa7fb4cb3f7199f9818a7431fa0fc4 (patch) | |
tree | 07dc6cc6a4f7f7f34440a19f947d38f8429b6a42 /lib-src/yow.c | |
parent | 7a7ade5a84d9e5a9a4f4709243aa0fa6ec7431f4 (diff) | |
download | emacs-efc2623e45aa7fb4cb3f7199f9818a7431fa0fc4.tar.gz |
entered into RCS
Diffstat (limited to 'lib-src/yow.c')
-rw-r--r-- | lib-src/yow.c | 6 |
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 @@ #include <stdio.h> #include <ctype.h> -#include "../src/paths.h" /* For PATH_EXEC. */ +#include "../src/paths.h" /* For PATH_DATA. */ #define BUFSIZE 80 #define SEP '\0' @@ -30,9 +30,9 @@ main (argc, argv) strcpy (file, argv[2]); else #ifdef vms - sprintf (file, "%s%s", PATH_EXEC, YOW_FILE); + sprintf (file, "%s%s", PATH_DATA, YOW_FILE); #else - sprintf (file, "%s/%s", PATH_EXEC, YOW_FILE); + sprintf (file, "%s/%s", PATH_DATA, YOW_FILE); #endif if ((fp = fopen(file, "r")) == NULL) { |