Mercurial > emacs
changeset 5687:2f22c0c6f021
(init_lread): Put non-ex-dir warnings on stderr.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 29 Jan 1994 01:15:53 +0000 |
parents | 0c351de98a26 |
children | a0f01b43a459 |
files | src/lread.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lread.c Fri Jan 28 17:34:46 1994 +0000 +++ b/src/lread.c Sat Jan 29 01:15:53 1994 +0000 @@ -1879,8 +1879,8 @@ { 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); } } }