aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorRichard M. Stallman1996-10-31 17:57:43 +0000
committerRichard M. Stallman1996-10-31 17:57:43 +0000
commit76d5c6cf01977e7ebae4d19afe7ca64786ab566c (patch)
tree995afe92c20d28c6467c62a90fc7edceded83065 /src/callproc.c
parenta0d76c279ecb62448cee5a54672264e4399dc518 (diff)
downloademacs-76d5c6cf01977e7ebae4d19afe7ca64786ab566c.tar.gz
emacs-76d5c6cf01977e7ebae4d19afe7ca64786ab566c.zip
(init_callproc): Use dir_warning.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/callproc.c b/src/callproc.c
index ffff3f45531..8c41ef37121 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -1083,21 +1083,13 @@ init_callproc ()
1083 1083
1084 tempdir = Fdirectory_file_name (Vexec_directory); 1084 tempdir = Fdirectory_file_name (Vexec_directory);
1085 if (access (XSTRING (tempdir)->data, 0) < 0) 1085 if (access (XSTRING (tempdir)->data, 0) < 0)
1086 { 1086 dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
1087 fprintf (stderr, 1087 Vexec_directory);
1088 "Warning: arch-dependent data dir (%s) does not exist.\n",
1089 XSTRING (Vexec_directory)->data);
1090 sleep (2);
1091 }
1092 1088
1093 tempdir = Fdirectory_file_name (Vdata_directory); 1089 tempdir = Fdirectory_file_name (Vdata_directory);
1094 if (access (XSTRING (tempdir)->data, 0) < 0) 1090 if (access (XSTRING (tempdir)->data, 0) < 0)
1095 { 1091 dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
1096 fprintf (stderr, 1092 Vdata_directory);
1097 "Warning: arch-independent data dir (%s) does not exist.\n",
1098 XSTRING (Vdata_directory)->data);
1099 sleep (2);
1100 }
1101 1093
1102#ifdef VMS 1094#ifdef VMS
1103 Vshell_file_name = build_string ("*dcl*"); 1095 Vshell_file_name = build_string ("*dcl*");