comparison src/xterm.c @ 89521:d422cab7935a

(x_term_init): Fix type error.
author Dave Love <fx@gnu.org>
date Wed, 17 Sep 2003 19:23:44 +0000
parents 2f877ed80fa6
children c23b4022c08d
comparison
equal deleted inserted replaced
89520:2c1ad8f1fe6f 89521:d422cab7935a
10304 10304
10305 GCPRO2 (s, abs_file); 10305 GCPRO2 (s, abs_file);
10306 s = make_string (file, strlen (file)); 10306 s = make_string (file, strlen (file));
10307 abs_file = Fexpand_file_name(s, Qnil); 10307 abs_file = Fexpand_file_name(s, Qnil);
10308 10308
10309 if (! NILP (abs_file) && Ffile_readable_p (abs_file)) 10309 if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
10310 gtk_rc_parse (SDATA (abs_file)); 10310 gtk_rc_parse (SDATA (abs_file));
10311 10311
10312 UNGCPRO; 10312 UNGCPRO;
10313 } 10313 }
10314 10314