Mercurial > emacs
changeset 89521:d422cab7935a
(x_term_init): Fix type error.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 17 Sep 2003 19:23:44 +0000 |
parents | 2c1ad8f1fe6f |
children | c4f948b2b0da |
files | src/xterm.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xterm.c Wed Sep 17 19:23:19 2003 +0000 +++ b/src/xterm.c Wed Sep 17 19:23:44 2003 +0000 @@ -10306,7 +10306,7 @@ 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;