diff options
| author | Miles Bader | 2003-08-19 16:20:13 +0000 |
|---|---|---|
| committer | Miles Bader | 2003-08-19 16:20:13 +0000 |
| commit | 27eeee55f10efa90315127cd79e689d6aa32c736 (patch) | |
| tree | 5d0b1ab3e59b2560aa1563b10e8d3822d6f54e59 /src/xterm.c | |
| parent | f4446bbf6f488f4ca028a513e37e95cbc79c91c4 (diff) | |
| download | emacs-27eeee55f10efa90315127cd79e689d6aa32c736.tar.gz emacs-27eeee55f10efa90315127cd79e689d6aa32c736.zip | |
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-20
src/xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 5463ce8e192..18f225182c8 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -10194,7 +10194,7 @@ x_term_init (display_name, xrm_option, resource_name) | |||
| 10194 | s = make_string (file, strlen (file)); | 10194 | s = make_string (file, strlen (file)); |
| 10195 | abs_file = Fexpand_file_name(s, Qnil); | 10195 | abs_file = Fexpand_file_name(s, Qnil); |
| 10196 | 10196 | ||
| 10197 | if (! NILP (abs_file) && Ffile_readable_p (abs_file)) | 10197 | if (! NILP (abs_file) && !NILP (Ffile_readable_p (abs_file))) |
| 10198 | gtk_rc_parse (SDATA (abs_file)); | 10198 | gtk_rc_parse (SDATA (abs_file)); |
| 10199 | 10199 | ||
| 10200 | UNGCPRO; | 10200 | UNGCPRO; |