comparison src/lread.c @ 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 0b312b3fa24e
children 0d02ee7ee659
comparison
equal deleted inserted replaced
5686:0c351de98a26 5687:2f22c0c6f021
1877 dirfile = Fcar (path_tail); 1877 dirfile = Fcar (path_tail);
1878 if (XTYPE (dirfile) == Lisp_String) 1878 if (XTYPE (dirfile) == Lisp_String)
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 }
1887 1887
1888 /* If the EMACSLOADPATH environment variable is set, use its value. 1888 /* If the EMACSLOADPATH environment variable is set, use its value.