diff options
| author | Dave Love | 2003-09-17 19:23:44 +0000 |
|---|---|---|
| committer | Dave Love | 2003-09-17 19:23:44 +0000 |
| commit | be41d5d001771ff30e2ef19723c4fd9595681544 (patch) | |
| tree | 111aa2091dbaa0647a678ec8b89acf35986d0fba /src | |
| parent | e3432aa4aea536c1a74004f5cde85468799067f7 (diff) | |
| download | emacs-be41d5d001771ff30e2ef19723c4fd9595681544.tar.gz emacs-be41d5d001771ff30e2ef19723c4fd9595681544.zip | |
(x_term_init): Fix type error.
Diffstat (limited to 'src')
| -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 e22e06a107e..1ed63800742 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -10306,7 +10306,7 @@ x_term_init (display_name, xrm_option, resource_name) | |||
| 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; |