# HG changeset patch # User Karl Heuer # Date 764463324 0 # Node ID c867b9af8de4b1662ca35bd2ded142a94c3ed535 # Parent 7c566d0e4b3d6e57e96ddc3ef2f7714736088a61 (read_minibuf): Use assignment instead of initialization. diff -r 7c566d0e4b3d -r c867b9af8de4 src/minibuf.c --- a/src/minibuf.c Wed Mar 23 22:55:01 1994 +0000 +++ b/src/minibuf.c Wed Mar 23 22:55:24 1994 +0000 @@ -204,8 +204,9 @@ CONSP (buf_list); buf_list = XCONS (buf_list)->cdr) { - Lisp_Object other_buf = XCONS (XCONS (buf_list)->car)->cdr; + Lisp_Object other_buf; + other_buf = XCONS (XCONS (buf_list)->car)->cdr; if (XTYPE (XBUFFER (other_buf)->directory) == Lisp_String) { current_buffer->directory = XBUFFER (other_buf)->directory;