aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-10-31 17:57:43 +0000
committerRichard M. Stallman <[email protected]>1996-10-31 17:57:43 +0000
commit76d5c6cf01977e7ebae4d19afe7ca64786ab566c (patch)
tree995afe92c20d28c6467c62a90fc7edceded83065 /src
parenta0d76c279ecb62448cee5a54672264e4399dc518 (diff)
(init_callproc): Use dir_warning.
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/src/callproc.c b/src/callproc.c
index ffff3f4553..8c41ef3712 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -1083,21 +1083,13 @@ init_callproc ()
tempdir = Fdirectory_file_name (Vexec_directory);
if (access (XSTRING (tempdir)->data, 0) < 0)
- {
- fprintf (stderr,
- "Warning: arch-dependent data dir (%s) does not exist.\n",
- XSTRING (Vexec_directory)->data);
- sleep (2);
- }
+ dir_warning ("Warning: arch-dependent data dir (%s) does not exist.\n",
+ Vexec_directory);
tempdir = Fdirectory_file_name (Vdata_directory);
if (access (XSTRING (tempdir)->data, 0) < 0)
- {
- fprintf (stderr,
- "Warning: arch-independent data dir (%s) does not exist.\n",
- XSTRING (Vdata_directory)->data);
- sleep (2);
- }
+ dir_warning ("Warning: arch-independent data dir (%s) does not exist.\n",
+ Vdata_directory);
#ifdef VMS
Vshell_file_name = build_string ("*dcl*");