aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2006-02-27 02:07:37 +0000
committerLuc Teirlinck2006-02-27 02:07:37 +0000
commitc50a2aa68292912f11d951bf20b24d79533e0537 (patch)
tree17c79db82505137e5a7e5af887e22a1ace9d6c0e /src
parent3ceb69d9767d0de882d6119a382ef57d532277b6 (diff)
downloademacs-c50a2aa68292912f11d951bf20b24d79533e0537.tar.gz
emacs-c50a2aa68292912f11d951bf20b24d79533e0537.zip
(check_windows_init_file): Use Fget_load_suffixes instead of Vload_suffixes.
Diffstat (limited to 'src')
-rw-r--r--src/w32.c2
1 files changed, 1 insertions, 1 deletions
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 ()
3888 objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH"))); 3888 objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH")));
3889 full_load_path = Fappend (2, objs); 3889 full_load_path = Fappend (2, objs);
3890 init_file = build_string ("term/w32-win"); 3890 init_file = build_string ("term/w32-win");
3891 fd = openp (full_load_path, init_file, Vload_suffixes, NULL, Qnil); 3891 fd = openp (full_load_path, init_file, Fget_load_suffixes (), NULL, Qnil);
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);