diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-10-31 17:57:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-10-31 17:57:43 +0000 |
commit | 76d5c6cf01977e7ebae4d19afe7ca64786ab566c (patch) | |
tree | 995afe92c20d28c6467c62a90fc7edceded83065 /src | |
parent | a0d76c279ecb62448cee5a54672264e4399dc518 (diff) | |
download | emacs-76d5c6cf01977e7ebae4d19afe7ca64786ab566c.tar.gz |
(init_callproc): Use dir_warning.
Diffstat (limited to 'src')
-rw-r--r-- | src/callproc.c | 16 |
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 () 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*"); |