# HG changeset patch # User Luc Teirlinck # Date 1141006057 0 # Node ID e22243af3267622f42550b9a71d02f10b233635e # Parent 269a00c6f882eef9dec90aec9575e8d2fcf20b98 (check_windows_init_file): Use Fget_load_suffixes instead of Vload_suffixes. diff -r 269a00c6f882 -r e22243af3267 src/w32.c --- a/src/w32.c Mon Feb 27 02:06:01 2006 +0000 +++ b/src/w32.c Mon Feb 27 02:07:37 2006 +0000 @@ -3888,7 +3888,7 @@ 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);