From: Luc Teirlinck Date: Mon, 27 Feb 2006 02:07:37 +0000 (+0000) Subject: (check_windows_init_file): Use Fget_load_suffixes instead of Vload_suffixes. X-Git-Tag: emacs-pretest-22.0.90~3882 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c50a2aa68292912f11d951bf20b24d79533e0537;p=emacs.git (check_windows_init_file): Use Fget_load_suffixes instead of Vload_suffixes. --- diff --git a/src/w32.c b/src/w32.c index 799a3f6ad9b..71799befdbb 100644 --- a/src/w32.c +++ b/src/w32.c @@ -3888,7 +3888,7 @@ check_windows_init_file () objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH"))); full_load_path = Fappend (2, objs); init_file = build_string ("term/w32-win"); - fd = openp (full_load_path, init_file, Vload_suffixes, NULL, Qnil); + fd = openp (full_load_path, init_file, Fget_load_suffixes (), NULL, Qnil); if (fd < 0) { Lisp_Object load_path_print = Fprin1_to_string (full_load_path, Qnil);