comparison src/w32.c @ 90228:fa0da9b57058

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-82 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 542-553) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 116-121) - Merge from emacs--cvs-trunk--0 - Update from CVS
author Miles Bader <miles@gnu.org>
date Mon, 19 Sep 2005 10:20:33 +0000
parents 2d92f5c9d6ae 02e47d7a9bca
children 5b7d410e31f9
comparison
equal deleted inserted replaced
90227:10fe5fadaf89 90228:fa0da9b57058
3892 if (fd < 0) 3892 if (fd < 0)
3893 { 3893 {
3894 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil); 3894 Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil);
3895 char *init_file_name = SDATA (init_file); 3895 char *init_file_name = SDATA (init_file);
3896 char *load_path = SDATA (load_path_print); 3896 char *load_path = SDATA (load_path_print);
3897 char *buffer = alloca (1024); 3897 char *buffer = alloca (1024
3898 + strlen (init_file_name)
3899 + strlen (load_path));
3898 3900
3899 sprintf (buffer, 3901 sprintf (buffer,
3900 "The Emacs Windows initialization file \"%s.el\" " 3902 "The Emacs Windows initialization file \"%s.el\" "
3901 "could not be found in your Emacs installation. " 3903 "could not be found in your Emacs installation. "
3902 "Emacs checked the following directories for this file:\n" 3904 "Emacs checked the following directories for this file:\n"