diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 46b56d0c3a7..c8d55a0373e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-03-12 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * xterm.c (x_term_init) [USE_GTK]: Fix typo. | ||
| 4 | |||
| 1 | 2003-03-12 Kim F. Storm <storm@cua.dk> | 5 | 2003-03-12 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | The following changes consolidates the fringe handling from | 7 | The following changes consolidates the fringe handling from |
diff --git a/src/xterm.c b/src/xterm.c index 259b96a7913..5feea82f3c1 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -14914,7 +14914,7 @@ x_term_init (display_name, xrm_option, resource_name) | |||
| 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 | ||