aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-29 01:15:53 +0000
committerRichard M. Stallman1994-01-29 01:15:53 +0000
commit3917910ac205068e13c82671377160ff1ffcb51e (patch)
tree3f3e37272dcac4a028b1a76aebb7619a9d05d7ee /src
parent80fd1fe20c26a026a8d1dfbbb341413e522f76f4 (diff)
downloademacs-3917910ac205068e13c82671377160ff1ffcb51e.tar.gz
emacs-3917910ac205068e13c82671377160ff1ffcb51e.zip
(init_lread): Put non-ex-dir warnings on stderr.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index 2ee7fbf12cc..d74febcf339 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1879,8 +1879,8 @@ init_lread ()
1879 { 1879 {
1880 dirfile = Fdirectory_file_name (dirfile); 1880 dirfile = Fdirectory_file_name (dirfile);
1881 if (access (XSTRING (dirfile)->data, 0) < 0) 1881 if (access (XSTRING (dirfile)->data, 0) < 0)
1882 printf ("Warning: lisp library (%s) does not exist.\n", 1882 fprintf (stderr, "Warning: lisp library (%s) does not exist.\n",
1883 XSTRING (Fcar (path_tail))->data); 1883 XSTRING (Fcar (path_tail))->data);
1884 } 1884 }
1885 } 1885 }
1886 } 1886 }