diff options
| author | Richard M. Stallman | 1994-01-29 01:15:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-29 01:15:53 +0000 |
| commit | 3917910ac205068e13c82671377160ff1ffcb51e (patch) | |
| tree | 3f3e37272dcac4a028b1a76aebb7619a9d05d7ee /src | |
| parent | 80fd1fe20c26a026a8d1dfbbb341413e522f76f4 (diff) | |
| download | emacs-3917910ac205068e13c82671377160ff1ffcb51e.tar.gz emacs-3917910ac205068e13c82671377160ff1ffcb51e.zip | |
(init_lread): Put non-ex-dir warnings on stderr.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 4 |
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 | } |