From: Richard M. Stallman Date: Sat, 29 Jan 1994 01:15:53 +0000 (+0000) Subject: (init_lread): Put non-ex-dir warnings on stderr. X-Git-Tag: emacs-19.34~10164 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3917910ac205068e13c82671377160ff1ffcb51e;p=emacs.git (init_lread): Put non-ex-dir warnings on stderr. --- 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 () { dirfile = Fdirectory_file_name (dirfile); if (access (XSTRING (dirfile)->data, 0) < 0) - printf ("Warning: lisp library (%s) does not exist.\n", - XSTRING (Fcar (path_tail))->data); + fprintf (stderr, "Warning: lisp library (%s) does not exist.\n", + XSTRING (Fcar (path_tail))->data); } } }