# HG changeset patch # User Karl Heuer # Date 764556167 0 # Node ID a975c59449169dffdb3cbdbbd80e2e5c5a2bfd51 # Parent bbde44df8b9d7c172a2524f7d7e16d639f62abe1 (x_window_to_scroll_bar, x_new_font): Use assignment, not initialization. diff -r bbde44df8b9d -r a975c5944916 src/xterm.c --- a/src/xterm.c Fri Mar 25 00:42:33 1994 +0000 +++ b/src/xterm.c Fri Mar 25 00:42:47 1994 +0000 @@ -2024,9 +2024,9 @@ XGCTYPE (tail) == Lisp_Cons; tail = XCONS (tail)->cdr) { - Lisp_Object frame = XCONS (tail)->car; - Lisp_Object bar, condemned; - + Lisp_Object frame, bar, condemned; + + frame = XCONS (tail)->car; /* All elements of Vframe_list should be frames. */ if (XGCTYPE (frame) != Lisp_Frame) abort (); @@ -4500,8 +4500,9 @@ } { - Lisp_Object lispy_name = build_string (fontname); - + Lisp_Object lispy_name; + + lispy_name = build_string (fontname); /* Free the information from XListFonts. The data we actually retain comes from XLoadQueryFont. */