(dir_warning): New function.

(init_lread): Use dir_warning.
This commit is contained in:
Richard M. Stallman 1996-10-31 17:58:01 +00:00
parent 76d5c6cf01
commit 85496b8cb5

View file

@ -2435,9 +2435,8 @@ init_lread ()
{
dirfile = Fdirectory_file_name (dirfile);
if (access (XSTRING (dirfile)->data, 0) < 0)
fprintf (stderr,
"Warning: Lisp directory `%s' does not exist.\n",
XSTRING (Fcar (path_tail))->data);
dir_warning ("Warning: Lisp directory `%s' does not exist.\n",
XCONS (path_tail)->car);
}
}
}
@ -2459,6 +2458,21 @@ init_lread ()
load_descriptor_list = Qnil;
}
/* Print a warning, using format string FORMAT, that directory DIRNAME
does not exist. Print it on stderr and put it in *Message*. */
dir_warning (format, dirname)
char *format;
Lisp_Object dirname;
{
char *buffer
= (char *) alloca (XSTRING (dirname)->size + strlen (format) + 5);
fprintf (stderr, format, XSTRING (dirname)->data);
sprintf (buffer, format, XSTRING (dirname)->data);
message_dolog (buffer, strlen (buffer), 0);
}
void
syms_of_lread ()
{