From 3917910ac205068e13c82671377160ff1ffcb51e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 29 Jan 1994 01:15:53 +0000 Subject: [PATCH] (init_lread): Put non-ex-dir warnings on stderr. --- src/lread.c | 4 ++-- 1 file 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 () { 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); } } } -- 2.39.5