comparison src/xterm.c @ 50103:2e253c47d904

(x_term_init) [USE_GTK]: Fix typo.
author Andreas Schwab <schwab@suse.de>
date Wed, 12 Mar 2003 22:55:02 +0000
parents ee703213acfa
children 66a7f2850b56
comparison
equal deleted inserted replaced
50102:05b7b0c519c5 50103:2e253c47d904
14912 { 14912 {
14913 struct gcpro gcpro1, gcpro2; 14913 struct gcpro gcpro1, gcpro2;
14914 char *file = "~/.emacs.d/gtkrc"; 14914 char *file = "~/.emacs.d/gtkrc";
14915 Lisp_Object s, abs_file; 14915 Lisp_Object s, abs_file;
14916 14916
14917 GCPRO2 (str, abs_file); 14917 GCPRO2 (s, abs_file);
14918 s = make_string (file, strlen (file)); 14918 s = make_string (file, strlen (file));
14919 abs_file = Fexpand_file_name(s, Qnil); 14919 abs_file = Fexpand_file_name(s, Qnil);
14920 14920
14921 if (! NILP (abs_file) && Ffile_readable_p (abs_file)) 14921 if (! NILP (abs_file) && Ffile_readable_p (abs_file))
14922 gtk_rc_parse (SDATA (abs_file)); 14922 gtk_rc_parse (SDATA (abs_file));