(x_term_init): Fix type error.
authorDave Love <fx@gnu.org>
Wed, 17 Sep 2003 19:23:44 +0000 (19:23 +0000)
committerDave Love <fx@gnu.org>
Wed, 17 Sep 2003 19:23:44 +0000 (19:23 +0000)
src/xterm.c

index e22e06a..1ed6380 100644 (file)
@@ -10306,7 +10306,7 @@ x_term_init (display_name, xrm_option, resource_name)
       s = make_string (file, strlen (file));
       abs_file = Fexpand_file_name(s, Qnil);
 
-      if (! NILP (abs_file) && Ffile_readable_p (abs_file))
+      if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file)))
         gtk_rc_parse (SDATA (abs_file));
 
       UNGCPRO;